aboutsummaryrefslogtreecommitdiff
path: root/test/test_parse_kicad_pcb.py
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2017-12-07 23:48:02 +0100
committerTrygve Laugstøl <trygvis@inamo.no>2017-12-07 23:48:02 +0100
commitefe5d835eaa26d8696c3352c4e1ed42da16fe27b (patch)
treed91a0273618e274278da77d01a20c183320f0940 /test/test_parse_kicad_pcb.py
parent1fba999bec5a589e4785594fb1a6fbfab9129097 (diff)
downloadee-python-efe5d835eaa26d8696c3352c4e1ed42da16fe27b.tar.gz
ee-python-efe5d835eaa26d8696c3352c4e1ed42da16fe27b.tar.bz2
ee-python-efe5d835eaa26d8696c3352c4e1ed42da16fe27b.tar.xz
ee-python-efe5d835eaa26d8696c3352c4e1ed42da16fe27b.zip
wip
Diffstat (limited to 'test/test_parse_kicad_pcb.py')
-rw-r--r--test/test_parse_kicad_pcb.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/test_parse_kicad_pcb.py b/test/test_parse_kicad_pcb.py
deleted file mode 100644
index 25c1957..0000000
--- a/test/test_parse_kicad_pcb.py
+++ /dev/null
@@ -1,12 +0,0 @@
-import pytest
-import os.path
-from ee.kicad import parse_kicad_pcb
-
-basedir = os.path.dirname(os.path.abspath(__file__))
-
-def test_parsing():
- path = os.path.join(basedir, "kicad_pcb/parser-1.kicad_pcb")
- count = 0
- for (event, token) in parse_kicad_pcb(path):
- count = count + 1
- assert count == 3657