poll_vote_fabricator.rb 119 B

1234567
  1. # frozen_string_literal: true
  2. Fabricator(:poll_vote) do
  3. account { Fabricate.build(:account) }
  4. poll
  5. choice 0
  6. end