1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Generating the importing modules tests.

This commit is contained in:
Shlomi Fish 2012-11-25 16:53:43 +02:00
parent cc64f7c8a3
commit 95fd883817
6 changed files with 15 additions and 18 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
tests/individually-importing/*.py

View file

@ -60,4 +60,5 @@ mo:
cp -f locale/it/LC_MESSAGES/pysol.mo locale/it_IT/LC_MESSAGES/pysol.mo cp -f locale/it/LC_MESSAGES/pysol.mo locale/it_IT/LC_MESSAGES/pysol.mo
test: test:
python scripts/gen_individual_importing_tests.py
runprove tests/individually-importing/*.py runprove tests/individually-importing/*.py

View file

@ -0,0 +1,13 @@
#!/usr/bin/env python
import os.path
for module_name in ['pysollib.mfxutil', 'pysollib.move',]:
open(os.path.join(".", "tests", "individually-importing", "import_" + module_name + ".py"), 'w').write('''#!/usr/bin/env python
import sys
sys.path.append("./tests/lib")
from TAP.Simple import plan, ok
plan(1)
sys.path.append(".")
import %(module_name)s
ok(1, "imported")
''' % { 'module_name': module_name })

View file

View file

@ -1,9 +0,0 @@
#!/usr/bin/env python
import sys
sys.path.append("./tests/lib")
from TAP.Simple import plan, ok
plan(1)
sys.path.append(".")
import pysollib.mfxutil
ok(1, "imported")

View file

@ -1,9 +0,0 @@
#!/usr/bin/env python
import sys
sys.path.append("./tests/lib")
from TAP.Simple import plan, ok
plan(1)
sys.path.append(".")
import pysollib.move
ok(1, "imported")