about summary refs log tree commit diff
path: root/spec/fabricators/poll_fabricator.rb
blob: 19c3b1d1641422b1dd4195eb26f4d111f11a2b87 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# 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