diff options
Diffstat (limited to 'Lib/test/test_math.py')
-rw-r--r-- | Lib/test/test_math.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/test_math.py b/Lib/test/test_math.py index 083759ca..856b1e8 100644 --- a/Lib/test/test_math.py +++ b/Lib/test/test_math.py @@ -1756,6 +1756,10 @@ class IsCloseTests(unittest.TestCase): with self.assertRaises(TypeError): prod([10, 20], [30, 40]) # start is a keyword-only argument + self.assertEqual(prod([0, 1, 2, 3]), 0) + self.assertEqual(prod([1, 0, 2, 3]), 0) + self.assertEqual(prod(range(10)), 0) + def test_main(): from doctest import DocFileSuite suite = unittest.TestSuite() |