mastodon-glitch/spec/fabricators/tag_fabricator.rb

6 lines
120 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-11-04 18:12:59 +00:00
Fabricator(:tag) do
name { sequence(:hashtag) { |i| "#{Faker::Lorem.word}#{i}" } }
2016-11-04 18:12:59 +00:00
end