mirror of
https://github.com/mastodon/mastodon.git
synced 2025-01-05 18:56:04 +01:00
8 lines
197 B
Ruby
8 lines
197 B
Ruby
Fabricator(:status) do
|
|
account
|
|
text 'Lorem ipsum dolor sit amet'
|
|
|
|
after_build do |status|
|
|
status.uri = Faker::Internet.device_token if !status.account.local? && status.uri.nil?
|
|
end
|
|
end
|