summaryrefslogtreecommitdiffstats
path: root/Lib/tkinter/test
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2010-09-17 23:27:09 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2010-09-17 23:27:09 (GMT)
commitd61d077bf57796555f0d8747718f60b35f136d6b (patch)
treeb9e683db9d98c25ae65d20c5be7294f612ae65d0 /Lib/tkinter/test
parent19ec67acf677ed5bc13e29555068568b524d561a (diff)
downloadcpython-d61d077bf57796555f0d8747718f60b35f136d6b.zip
cpython-d61d077bf57796555f0d8747718f60b35f136d6b.tar.gz
cpython-d61d077bf57796555f0d8747718f60b35f136d6b.tar.bz2
#1730136: Fix comparison between a tk Font object and an object of a different type.
Diffstat (limited to 'Lib/tkinter/test')
-rw-r--r--Lib/tkinter/test/test_tkinter/test_font.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/Lib/tkinter/test/test_tkinter/test_font.py b/Lib/tkinter/test/test_tkinter/test_font.py
new file mode 100644
index 0000000..56e0c02
--- /dev/null
+++ b/Lib/tkinter/test/test_tkinter/test_font.py
@@ -0,0 +1,20 @@
+import unittest
+import tkinter
+from tkinter import font
+from test.support import requires, run_unittest
+
+requires('gui')
+
+class FontTest(unittest.TestCase):
+ def test_font_eq(self):
+ font1 = font.nametofont("system")
+ font2 = font.nametofont("system")
+ self.assertIsNot(font1, font2)
+ self.assertEqual(font1, font2)
+ self.assertNotEqual(font1, font1.copy())
+ self.assertNotEqual(font1, 0)
+
+tests_gui = (FontTest, )
+
+if __name__ == "__main__":
+ run_unittest(*tests_gui)