summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_bool.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_bool.py')
-rw-r--r--Lib/test/test_bool.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/test_bool.py b/Lib/test/test_bool.py
index 9f8f0e1..1e6ec19 100644
--- a/Lib/test/test_bool.py
+++ b/Lib/test/test_bool.py
@@ -170,6 +170,10 @@ class BoolTest(unittest.TestCase):
self.assertIs(bool(""), False)
self.assertIs(bool(), False)
+ def test_keyword_args(self):
+ with self.assertWarns(DeprecationWarning):
+ self.assertIs(bool(x=10), True)
+
def test_format(self):
self.assertEqual("%d" % False, "0")
self.assertEqual("%d" % True, "1")