mirror of
https://bitbucket.org/seefoe/dockerized-swg-src.git
synced 2026-07-14 00:01:36 -04:00
14 lines
272 B
Python
Executable File
14 lines
272 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import sys
|
|
|
|
if len(sys.argv) == 1:
|
|
print('''usage: test_script.py <filename> ...
|
|
Example: test_script.py '/path/to/file.script' ''')
|
|
sys.exit(1)
|
|
|
|
from mocha.parser import MochaParser
|
|
|
|
parser = MochaParser()
|
|
parser.parse_file(sys.argv[1])
|