[Python-checkins] gh-102252: Improve coverage of test_bool.py (GH-102253)

miss-islington webhook-mailer at python.org
Sat Feb 25 16:09:46 EST 2023


https://github.com/python/cpython/commit/f894995eb606a2cf831be56383720adc23ebcb80
commit: f894995eb606a2cf831be56383720adc23ebcb80
branch: 3.10
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2023-02-25T13:09:39-08:00
summary:

gh-102252: Improve coverage of test_bool.py (GH-102253)


Add tests for conversion from bool to complex.
(cherry picked from commit 41970436373f4be813fe8f5a07b6da04d5f4c80e)

Co-authored-by: Eclips4 <80244920+Eclips4 at users.noreply.github.com>

files:
M Lib/test/test_bool.py

diff --git a/Lib/test/test_bool.py b/Lib/test/test_bool.py
index 4b32aad2419f..5215f775c615 100644
--- a/Lib/test/test_bool.py
+++ b/Lib/test/test_bool.py
@@ -40,6 +40,12 @@ def test_float(self):
         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)



More information about the Python-checkins mailing list