exercism/ruby/leap/leap_test.rb
2018-09-16 15:09:35 -04:00

35 lines
887 B
Ruby

require 'minitest/autorun'
require_relative 'leap'
# Common test data version: 1.3.0 e348053
class Date
def leap?
raise RuntimeError, "Implement this yourself instead of using Ruby's implementation."
end
alias gregorian_leap? leap?
alias julian_leap? leap?
end
class YearTest < Minitest::Test
def test_year_not_divisible_by_4_common_year
# skip
refute Year.leap?(2015), "Expected 'false', 2015 is not a leap year."
end
def test_year_divisible_by_4_not_divisible_by_100_leap_year
# skip
assert Year.leap?(1996), "Expected 'true', 1996 is a leap year."
end
def test_year_divisible_by_100_not_divisible_by_400_common_year
# skip
refute Year.leap?(2100), "Expected 'false', 2100 is not a leap year."
end
def test_year_divisible_by_400_leap_year
# skip
assert Year.leap?(2000), "Expected 'true', 2000 is a leap year."
end
end