exercism/ruby/high-scores/high_scores_test.rb

90 lines
2.3 KiB
Ruby
Raw Normal View History

2018-11-07 15:19:08 -05:00
require 'minitest/autorun'
require_relative 'high_scores'
# Common test data version: 1.0.0 3204fc2
class HighScoresTest < Minitest::Test
def test_list_of_scores
# skip
scores = [30, 50, 20, 70]
expected = [30, 50, 20, 70]
assert_equal expected, HighScores.new(scores).scores
end
def test_latest_score
# skip
scores = [100, 0, 90, 30]
expected = 30
assert_equal expected, HighScores.new(scores).latest
end
def test_highest_score
# skip
scores = [40, 100, 70]
expected = 100
assert_equal expected, HighScores.new(scores).highest
end
def test_personal_bests
# skip
scores = [50, 30, 10]
expected = [50, 30, 10]
assert_equal expected, HighScores.new(scores).top
end
def test_personal_bests_highest_to_lowest
# skip
scores = [20, 10, 30]
expected = [30, 20, 10]
assert_equal expected, HighScores.new(scores).top
end
def test_personal_bests_when_there_is_a_tie
# skip
scores = [40, 20, 40, 30]
expected = [40, 40, 30]
assert_equal expected, HighScores.new(scores).top
end
def test_personal_bests_when_there_are_less_than_3
# skip
scores = [30, 70]
expected = [70, 30]
assert_equal expected, HighScores.new(scores).top
end
def test_personal_bests_when_there_is_only_one
# skip
scores = [40]
expected = [40]
assert_equal expected, HighScores.new(scores).top
end
def test_personal_bests_from_a_long_list
# skip
scores = [10, 30, 90, 30, 100, 20, 10, 0, 30, 40, 40, 70, 70]
expected = [100, 90, 70]
assert_equal expected, HighScores.new(scores).top
end
def test_message_for_new_personal_best
# skip
scores = [20, 40, 0, 30, 70]
expected = "Your latest score was 70. That's your personal best!"
assert_equal expected, HighScores.new(scores).report
end
def test_message_when_latest_score_is_not_the_highest_score
# skip
scores = [20, 100, 0, 30, 70]
expected = "Your latest score was 70. That's 30 short of your personal best!"
assert_equal expected, HighScores.new(scores).report
end
def test_message_for_repeated_personal_best
# skip
scores = [20, 70, 50, 70, 30]
expected = "Your latest score was 30. That's 40 short of your personal best!"
assert_equal expected, HighScores.new(scores).report
end
end