1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-24 06:26:52 +00:00
mastodon/spec/fabricators/poll_fabricator.rb

10 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