summaryrefslogtreecommitdiffstats
path: root/tests/other
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-06-29 19:32:06 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-06-29 19:32:06 +0200
commitfacb379f3b6cdc5423f8400d756822f5f7890e2c (patch)
tree55e23c03ffdc71206fb9c50be485bd9d34dc9633 /tests/other
parentfixed capitalization of dependency (diff)
downloadpyload-facb379f3b6cdc5423f8400d756822f5f7890e2c.tar.xz
updated test suite
Diffstat (limited to 'tests/other')
-rw-r--r--tests/other/test_syntax.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/other/test_syntax.py b/tests/other/test_syntax.py
index fbf7edf8f..396fc8f4b 100644
--- a/tests/other/test_syntax.py
+++ b/tests/other/test_syntax.py
@@ -14,7 +14,7 @@ class TestSyntax(TestCase):
pass
-for path, dirs, files in walk(join(PATH, "module")):
+for path, dirs, files in walk(join(PATH, "pyload")):
for f in files:
if not f.endswith(".py") or f.startswith("__"): continue
@@ -26,7 +26,6 @@ for path, dirs, files in walk(join(PATH, "module")):
# to much sideeffect when importing
if "web" in packages or "lib" in packages: continue
- if "ThriftTest" in packages: continue
# currying
def meta(imp, sig):
@@ -38,6 +37,4 @@ for path, dirs, files in walk(join(PATH, "module")):
# generate test methods
sig = "test_%s_%s" % (packages[-2], packages[-1])
-
-
setattr(TestSyntax, sig, meta(imp, sig)) \ No newline at end of file