Add build system. Fix import.
[checkpath-python] / test.py
diff --git a/test.py b/test.py
deleted file mode 100644 (file)
index 9eb2d8d..0000000
--- a/test.py
+++ /dev/null
@@ -1,12 +0,0 @@
-import checkpath as CP
-
-class VerboseCheck (CP.CheckPath):
-  def __init__(me):
-    CP.CheckPath.__init__(me)
-    me.what |= CP.REPORT
-  def report(me, what, verb, path, msg):
-    print msg
-
-cp = VerboseCheck()
-cp.check('/home/mdw')
-