From 3b411b107dd9cbaded7138a6a08ccd6cf1838f5c Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Fri, 31 Oct 2014 16:39:12 -0400 Subject: tests --- t/mop_test.py | 5 +++++ 1 file changed, 5 insertions(+) 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) -- cgit v1.2.3