mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-07 15:34:55 +00:00
11 lines
175 B
Ruby
11 lines
175 B
Ruby
# frozen_string_literal: true
|
|
|
|
Fabricator(:poll) do
|
|
account
|
|
status
|
|
expires_at { 7.days.from_now }
|
|
options %w(Foo Bar)
|
|
multiple false
|
|
hide_totals false
|
|
end
|