1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-12-12 21:58:59 +09:00
whippy-edition/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