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:
parent
cc64f7c8a3
commit
95fd883817
6 changed files with 15 additions and 18 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
tests/individually-importing/*.py
|
1
Makefile
1
Makefile
|
@ -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
|
||||||
|
|
13
scripts/gen_individual_importing_tests.py
Normal file
13
scripts/gen_individual_importing_tests.py
Normal 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 })
|
0
tests/individually-importing/PLACEHOLDER
Normal file
0
tests/individually-importing/PLACEHOLDER
Normal 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")
|
|
|
@ -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")
|
|
Loading…
Add table
Reference in a new issue