Files
danbooru/test/factories/comment_vote.rb
evazion 3656063a6b tests: fix unit tests.
* Move old post archive tests to post version tests.

* Fix pool tests that assumed that multiple edits by the same user
  weren't merged.

* Fix references to `is_active` and `notes` on artist model.
2020-03-21 21:07:35 -05:00

8 lines
94 B
Ruby

FactoryBot.define do
factory(:comment_vote) do
comment
user
score {1}
end
end