~cytrogen/masto-fe

ref: 42a0898f1676156d90629e3d189fe0e04bc47fe9 masto-fe/spec/fabricators/poll_fabricator.rb -rw-r--r-- 234 bytes
42a0898f — Claire Merge commit '3a2a15c6ea4d4603469861ed9be09da12a122e45' into glitch-soc/merge-upstream 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

Fabricator(:poll) do
  account { Fabricate.build(:account) }
  status { Fabricate.build(:status) }
  expires_at  { 7.days.from_now }
  options     %w(Foo Bar)
  multiple    false
  hide_totals false
end