aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2017-09-09 21:04:08 +0200
committerTrygve Laugstøl <trygvis@inamo.no>2017-09-09 21:04:08 +0200
commit736b7b25f913d21578e26940265b20acabf62cd9 (patch)
tree90539246b95dc94bc1a5231eb09d8a01491f767d /test
parent2237de33db047b43c8da84a2abe26eb3e3fe6cbe (diff)
downloadee-python-736b7b25f913d21578e26940265b20acabf62cd9.tar.gz
ee-python-736b7b25f913d21578e26940265b20acabf62cd9.tar.bz2
ee-python-736b7b25f913d21578e26940265b20acabf62cd9.tar.xz
ee-python-736b7b25f913d21578e26940265b20acabf62cd9.zip
o Splitting out read_schematic into its own file.
Diffstat (limited to 'test')
-rw-r--r--test/test_read_schematic.py (renamed from test/test_sch.py)8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/test_sch.py b/test/test_read_schematic.py
index a3c6915..8edda3b 100644
--- a/test/test_sch.py
+++ b/test/test_read_schematic.py
@@ -2,6 +2,14 @@ import pytest
import sys
import os.path
from ee.kicad import read_schematic
+
+from ee import kicad
+import ee
+
+print("type=" + str(type(kicad)))
+for x in dir(ee):
+ print("x={}".format(x))
+
basedir = os.path.dirname(os.path.abspath(__file__))