Sha256: 508cb1d6dd981d907ecba8bc2c3f94c1c397c4efa4d82f06df0af6d7296656e1

Contents?: true

Size: 600 Bytes

Versions: 130

Compression:

Stored size: 600 Bytes

Contents

import unittest

from leap import is_leap_year


# test cases adapted from `x-common//canonical-data.json` @ version: 1.0.0

class YearTest(unittest.TestCase):
    def test_year_not_divisible_by_4(self):
        self.assertFalse(is_leap_year(2015))

    def test_year_divisible_by_4_not_divisible_by_100(self):
        self.assertTrue(is_leap_year(2016))

    def test_year_divisible_by_100_not_divisible_by_400(self):
        self.assertFalse(is_leap_year(2100))

    def test_year_divisible_by_400(self):
        self.assertTrue(is_leap_year(2000))


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

Version data entries

130 entries across 130 versions & 1 rubygems

Version Path
trackler-2.2.1.25 tracks/python/exercises/leap/leap_test.py
trackler-2.2.1.24 tracks/python/exercises/leap/leap_test.py
trackler-2.2.1.23 tracks/python/exercises/leap/leap_test.py
trackler-2.2.1.22 tracks/python/exercises/leap/leap_test.py
trackler-2.2.1.21 tracks/python/exercises/leap/leap_test.py
trackler-2.2.1.20 tracks/python/exercises/leap/leap_test.py
trackler-2.2.1.19 tracks/python/exercises/leap/leap_test.py
trackler-2.2.1.18 tracks/python/exercises/leap/leap_test.py
trackler-2.2.1.17 tracks/python/exercises/leap/leap_test.py
trackler-2.2.1.16 tracks/python/exercises/leap/leap_test.py
trackler-2.2.1.15 tracks/python/exercises/leap/leap_test.py
trackler-2.2.1.14 tracks/python/exercises/leap/leap_test.py
trackler-2.2.1.13 tracks/python/exercises/leap/leap_test.py
trackler-2.2.1.12 tracks/python/exercises/leap/leap_test.py
trackler-2.2.1.11 tracks/python/exercises/leap/leap_test.py
trackler-2.2.1.10 tracks/python/exercises/leap/leap_test.py
trackler-2.2.1.9 tracks/python/exercises/leap/leap_test.py
trackler-2.2.1.8 tracks/python/exercises/leap/leap_test.py
trackler-2.2.1.7 tracks/python/exercises/leap/leap_test.py
trackler-2.2.1.6 tracks/python/exercises/leap/leap_test.py