aboutsummaryrefslogtreecommitdiff
path: root/test/test_parse_kicad_pcb.py
diff options
context:
space:
mode:
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