Beefed up the greed scoring tests just a bit.

This commit is contained in:
Jim Weirich
2013-06-07 06:01:01 +08:00
parent 8122d347f0
commit d5b787cd2b

View File

@@ -90,6 +90,9 @@ class AboutScoringProject < Neo::Koan
def test_score_of_mixed_is_sum
assert_equal 250, score([2,5,2,2,3])
assert_equal 550, score([5,5,5,5])
assert_equal 1100, score([1,1,1,1])
assert_equal 1200, score([1,1,1,1,1])
assert_equal 1150, score([1,1,1,5,1])
end
end