1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00
PySolFC/tests/individually-importing/import_move.py
Shlomi Fish cc64f7c8a3 import pysollib.move is working.
Copy paste of the previous test.

"Three strikes and then you refactor."
2012-11-25 16:35:28 +02:00

9 lines
165 B
Python

#!/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")