* 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.
8 lines
94 B
Ruby
8 lines
94 B
Ruby
FactoryBot.define do
|
|
factory(:comment_vote) do
|
|
comment
|
|
user
|
|
score {1}
|
|
end
|
|
end
|