Sha256: 566d97b082f0385c9d6e7fd92330954d67018ad02a53a6849893847463bfc842

Contents?: true

Size: 617 Bytes

Versions: 54

Compression:

Stored size: 617 Bytes

Contents

import unittest

from leap import is_leap_year


# Tests adapted from `problem-specifications//canonical-data.json` @ v1.3.0

class YearTest(unittest.TestCase):
    def test_year_not_divisible_by_4(self):
        self.assertIs(is_leap_year(2015), False)

    def test_year_divisible_by_4_not_divisible_by_100(self):
        self.assertIs(is_leap_year(1996), True)

    def test_year_divisible_by_100_not_divisible_by_400(self):
        self.assertIs(is_leap_year(2100), False)

    def test_year_divisible_by_400(self):
        self.assertIs(is_leap_year(2000), True)


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

Version data entries

54 entries across 54 versions & 1 rubygems

Version Path
trackler-2.2.1.160 tracks/python/exercises/leap/leap_test.py
trackler-2.2.1.159 tracks/python/exercises/leap/leap_test.py
trackler-2.2.1.158 tracks/python/exercises/leap/leap_test.py
trackler-2.2.1.157 tracks/python/exercises/leap/leap_test.py
trackler-2.2.1.156 tracks/python/exercises/leap/leap_test.py
trackler-2.2.1.155 tracks/python/exercises/leap/leap_test.py
trackler-2.2.1.154 tracks/python/exercises/leap/leap_test.py
trackler-2.2.1.153 tracks/python/exercises/leap/leap_test.py
trackler-2.2.1.152 tracks/python/exercises/leap/leap_test.py
trackler-2.2.1.151 tracks/python/exercises/leap/leap_test.py
trackler-2.2.1.150 tracks/python/exercises/leap/leap_test.py
trackler-2.2.1.149 tracks/python/exercises/leap/leap_test.py
trackler-2.2.1.148 tracks/python/exercises/leap/leap_test.py
trackler-2.2.1.147 tracks/python/exercises/leap/leap_test.py
trackler-2.2.1.146 tracks/python/exercises/leap/leap_test.py
trackler-2.2.1.145 tracks/python/exercises/leap/leap_test.py
trackler-2.2.1.144 tracks/python/exercises/leap/leap_test.py
trackler-2.2.1.143 tracks/python/exercises/leap/leap_test.py
trackler-2.2.1.142 tracks/python/exercises/leap/leap_test.py
trackler-2.2.1.141 tracks/python/exercises/leap/leap_test.py