Sha256: d2000ba232ead02ef31f19091e6d5e6b722352d63e22da343404fb705d663b2a

Contents?: true

Size: 551 Bytes

Versions: 107

Compression:

Stored size: 551 Bytes

Contents

import unittest

from leap import is_leap_year


class YearTest(unittest.TestCase):
    def test_leap_year(self):
        self.assertIs(is_leap_year(1996), True)

    def test_non_leap_year(self):
        self.assertIs(is_leap_year(1997), False)

    def test_non_leap_even_year(self):
        self.assertIs(is_leap_year(1998), False)

    def test_century(self):
        self.assertIs(is_leap_year(1900), False)

    def test_exceptional_century(self):
        self.assertIs(is_leap_year(2400), True)


if __name__ == '__main__':
    unittest.main()

Version data entries

107 entries across 107 versions & 1 rubygems

Version Path
trackler-2.0.5.16 tracks/python/exercises/leap/leap_test.py
trackler-2.0.5.15 tracks/python/exercises/leap/leap_test.py
trackler-2.0.5.14 tracks/python/exercises/leap/leap_test.py
trackler-2.0.5.13 tracks/python/exercises/leap/leap_test.py
trackler-2.0.5.12 tracks/python/exercises/leap/leap_test.py
trackler-2.0.5.11 tracks/python/exercises/leap/leap_test.py
trackler-2.0.5.10 tracks/python/exercises/leap/leap_test.py
trackler-2.0.5.9 tracks/python/exercises/leap/leap_test.py
trackler-2.0.5.8 tracks/python/exercises/leap/leap_test.py
trackler-2.0.5.7 tracks/python/exercises/leap/leap_test.py
trackler-2.0.5.6 tracks/python/exercises/leap/leap_test.py
trackler-2.0.5.5 tracks/python/exercises/leap/leap_test.py
trackler-2.0.5.4 tracks/python/exercises/leap/leap_test.py
trackler-2.0.5.3 tracks/python/exercises/leap/leap_test.py
trackler-2.0.5.2 tracks/python/exercises/leap/leap_test.py
trackler-2.0.5.1 tracks/python/exercises/leap/leap_test.py
trackler-2.0.5.0 tracks/python/exercises/leap/leap_test.py
trackler-2.0.4.0 tracks/python/exercises/leap/leap_test.py
trackler-2.0.3.9 tracks/python/exercises/leap/leap_test.py
trackler-2.0.3.8 tracks/python/exercises/leap/leap_test.py