diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2017-12-12 13:00:00 +0100 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2017-12-15 07:30:35 +0100 |
commit | dce92efdbc3f689197c6d46ff3f37cecb7c81a40 (patch) | |
tree | 8cf1a03a6d717df6aa87f0c7cad4bffbac2a362c /test/tool | |
parent | 102614dc8fe2f5aefd0fd92c1b6e48107a9629b0 (diff) | |
download | ee-python-dce92efdbc3f689197c6d46ff3f37cecb7c81a40.tar.gz ee-python-dce92efdbc3f689197c6d46ff3f37cecb7c81a40.tar.bz2 ee-python-dce92efdbc3f689197c6d46ff3f37cecb7c81a40.tar.xz ee-python-dce92efdbc3f689197c6d46ff3f37cecb7c81a40.zip |
o Adding a test for kicad-make-pos.
Diffstat (limited to 'test/tool')
-rw-r--r-- | test/tool/test_kicad_make_pos.py | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/test/tool/test_kicad_make_pos.py b/test/tool/test_kicad_make_pos.py new file mode 100644 index 0000000..447b497 --- /dev/null +++ b/test/tool/test_kicad_make_pos.py @@ -0,0 +1,27 @@ +import utils +import argparse +import os.path +from io import StringIO + +basedir = os.path.dirname(os.path.abspath(__file__)) + +def test_basic(): + argv = [ + "ee", + "--kicad-pcb", + os.path.join(basedir, "../kicad_pcb/parser-1.kicad_pcb") + ] + buf = StringIO() + try: + with utils.make_env(argv=argv, stdout=buf): + import ee.tools.kicad_make_pos + except SystemExit as e: + raise e + finally: + print("Output") + buf.seek(0) + count = 0 + for l in buf.readlines(): + print(l.rstrip()) + count = count + 1 + assert count > 3 |