From: Eclips4 <80244920+Eclips4@users.noreply.github.com> Date: Sat, 25 Feb 2023 20:50:24 +0000 (+0300) Subject: gh-102252: Improve coverage of test_bool.py (#102253) X-Git-Tag: v3.12.0a6~70 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=41970436373f4be813fe8f5a07b6da04d5f4c80e;p=thirdparty%2FPython%2Fcpython.git gh-102252: Improve coverage of test_bool.py (#102253) Add tests for conversion from bool to complex. --- diff --git a/Lib/test/test_bool.py b/Lib/test/test_bool.py index f46f21da8da3..b711ffb9a3ec 100644 --- a/Lib/test/test_bool.py +++ b/Lib/test/test_bool.py @@ -40,6 +40,12 @@ class BoolTest(unittest.TestCase): self.assertEqual(float(True), 1.0) self.assertIsNot(float(True), True) + def test_complex(self): + self.assertEqual(complex(False), 0j) + self.assertEqual(complex(False), False) + self.assertEqual(complex(True), 1+0j) + self.assertEqual(complex(True), True) + def test_math(self): self.assertEqual(+False, 0) self.assertIsNot(+False, False)