aboutsummaryrefslogtreecommitdiffstats
path: root/tests/samplebinding/point_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/samplebinding/point_test.py')
-rw-r--r--tests/samplebinding/point_test.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/samplebinding/point_test.py b/tests/samplebinding/point_test.py
index d1ae3eed9..752302c74 100644
--- a/tests/samplebinding/point_test.py
+++ b/tests/samplebinding/point_test.py
@@ -78,6 +78,11 @@ class PointTest(unittest.TestCase):
self.assertEqual(sys.getrefcount(pt1), refcount1 + 1)
self.assertEqual(sys.getrefcount(pt1), sys.getrefcount(pt2))
+ def testUintOverflow(self):
+ pt1 = Point(0.0, 0.0)
+ self.assertRaises(OverflowError, pt1.setXAsUint, 840835495615213080)
+ self.assertEqual(pt1.x(), 0.0)
+
if __name__ == '__main__':
unittest.main()