aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-10-31 16:39:12 -0400
committerJesse Luehrs <doy@tozt.net>2014-10-31 16:39:12 -0400
commit3b411b107dd9cbaded7138a6a08ccd6cf1838f5c (patch)
treed9b5ab82d0bb1202a9ad2a8a9e1e4e71386b1c7d
parent27536fea937fc93b78a1dd0a3d5185eb42ae3573 (diff)
downloadpython-mop-3b411b107dd9cbaded7138a6a08ccd6cf1838f5c.tar.gz
python-mop-3b411b107dd9cbaded7138a6a08ccd6cf1838f5c.zip
tests
-rw-r--r--t/mop_test.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/t/mop_test.py b/t/mop_test.py
index ce7a333..125b170 100644
--- a/t/mop_test.py
+++ b/t/mop_test.py
@@ -85,3 +85,8 @@ class MopTest(unittest.TestCase):
assert not point.can("z")
assert point3d.can("z")
+
+ assert point.isa(Point)
+ assert point3d.isa(Point)
+ assert not point.isa(Point3D)
+ assert point3d.isa(Point3D)