1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-03-02 06:23:47 -05:00
2023-06-10 18:29:01 +02:00

11 lines
258 B
Ruby

# frozen_string_literal: true
Fabricator(:status) do
account { Fabricate.build(: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