Files
danbooru/test/factories/favorite_group.rb
evazion cdd46b0ac5 tests: fix more spurious test failures in CI.
* Skip Nijie tests because they fail a lot due to Nijie rate limiting us.
* Skip ArtStation downloads tests because they sometimes return different file sizes.
* Fix random duplicate favgroup errors because favgroup names weren't random enough.
2021-10-01 18:05:25 -05:00

7 lines
103 B
Ruby

FactoryBot.define do
factory :favorite_group do
creator
name { SecureRandom.uuid }
end
end