1
0
mirror of https://github.com/mastodon/mastodon synced 2024-11-29 07:18:20 +09:00
mastodon/spec/fabricators/poll_fabricator.rb

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