Skip to content

Commit

Permalink
Merge pull request #228 from etmoore/sum-of-multiples-test
Browse files Browse the repository at this point in the history
add missing test to sum-of-multiples exercise
  • Loading branch information
kytrinyx committed Nov 30, 2015
2 parents 912cc0f + be85f56 commit cbce438
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions sum-of-multiples/sum_of_multiples_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ def test_sum_to_10
assert_equal 23, SumOfMultiples.to(10)
end

def test_sum_to_100
assert_equal 2_318, SumOfMultiples.to(100)
end

def test_sum_to_1000
skip
assert_equal 233_168, SumOfMultiples.to(1000)
Expand Down

0 comments on commit cbce438

Please sign in to comment.