aboutsummaryrefslogtreecommitdiffstats
path: root/tests/samplebinding
diff options
context:
space:
mode:
authorRenato Filho <renato.filho@openbossa.org>2010-09-03 16:16:26 -0300
committerRenato Filho <renato.filho@openbossa.org>2010-09-03 17:16:59 -0300
commit5d23ed3a8801b7152e2c3a601e3bb64595d79046 (patch)
treec78c2e43cc262f070b9d3c2768c3e99563a4a403 /tests/samplebinding
parent3fed4510716ad6444c77ecd50466f514e1f03848 (diff)
Avoid call functions when an error occurs on argument conversion.
Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
Diffstat (limited to 'tests/samplebinding')
-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()