1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-11-24 23:26:31 +09:00
whippy-edition/spec/fabricators/status_fabricator.rb

9 lines
197 B
Ruby
Raw Normal View History

2016-02-26 23:28:08 +09:00
Fabricator(:status) do
account
2016-02-26 23:28:08 +09:00
text "Lorem ipsum dolor sit amet"
after_build do |status|
status.uri = Faker::Internet.device_token if !status.account.local? && status.uri.nil?
end
2016-02-26 23:28:08 +09:00
end