X-Git-Url: https://git.distorted.org.uk/~mdw/catacomb-python/blobdiff_plain/3317491a2bc28732f805c8521777aafa52038793..1e8aaf8b7069139bdbd802e1d419cd10141bebd5:/t/t-mp.py diff --git a/t/t-mp.py b/t/t-mp.py index 24e80cd..2cba8ec 100644 --- a/t/t-mp.py +++ b/t/t-mp.py @@ -156,7 +156,7 @@ class TestMP (U.TestCase): def test_strconv(me): x, y = C.MP(169), "24" - for fn in [T.add, T.sub]: + for fn in [T.add, T.sub, T.div]: me.assertRaises(TypeError, fn, x, y) me.assertRaises(TypeError, fn, y, x) me.assertEqual(x*y, 169*"24")