Files
fizzy/test/models/card/scorable_test.rb
T
David Heinemeier Hansson 760cbb6c99 Drop boosts
Killed by design.
2025-04-12 18:52:54 +02:00

13 lines
344 B
Ruby

require "test_helper"
class Card::ScorableTest < ActiveSupport::TestCase
test "cards with no activity have a valid activity_score_order" do
card = Card.create! collection: collections(:writebook), creator: users(:kevin)
card.rescore
assert card.activity_score.zero?
assert_not card.activity_score_order.infinite?
end
end