X-Git-Url: https://git.distorted.org.uk/~mdw/checkpath-python/blobdiff_plain/333870bbf36270a9132707e1cb1aff9fc3ace8ab..ab147f752ccf1e2ed765ed025e3d0c6cc899e05a:/test.py diff --git a/test.py b/test.py deleted file mode 100644 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') -