summaryrefslogtreecommitdiff
path: root/gerbonara/gerber/tests/test_common.py
diff options
context:
space:
mode:
authorjaseg <git@jaseg.de>2022-01-24 14:25:29 +0100
committerjaseg <git@jaseg.de>2022-01-24 14:25:29 +0100
commit3b7330f9a8be6fa3f33f0b318009c5137d7586c1 (patch)
tree66322b8b2d4aedd86f9dc04b9a8b6d6b99e4a51b /gerbonara/gerber/tests/test_common.py
parentb95c2baaf201b6a02ad680e535bd557321b3087b (diff)
downloadgerbonara-3b7330f9a8be6fa3f33f0b318009c5137d7586c1.tar.gz
gerbonara-3b7330f9a8be6fa3f33f0b318009c5137d7586c1.tar.bz2
gerbonara-3b7330f9a8be6fa3f33f0b318009c5137d7586c1.zip
Add obsolete test cases
Diffstat (limited to 'gerbonara/gerber/tests/test_common.py')
-rw-r--r--gerbonara/gerber/tests/test_common.py38
1 files changed, 0 insertions, 38 deletions
diff --git a/gerbonara/gerber/tests/test_common.py b/gerbonara/gerber/tests/test_common.py
deleted file mode 100644
index e4c023c..0000000
--- a/gerbonara/gerber/tests/test_common.py
+++ /dev/null
@@ -1,38 +0,0 @@
-#! /usr/bin/env python
-# -*- coding: utf-8 -*-
-
-# Author: Hamilton Kibbe <ham@hamiltonkib.be>
-from ..exceptions import ParseError
-from ..common import read, loads
-from ..excellon import ExcellonFile
-from ..rs274x import GerberFile
-import os
-import pytest
-
-
-NCDRILL_FILE = os.path.join(os.path.dirname(__file__), "resources/ncdrill.DRD")
-TOP_COPPER_FILE = os.path.join(os.path.dirname(__file__), "resources/top_copper.GTL")
-
-
-def test_file_type_detection():
- """ Test file type detection
- """
- ncdrill = read(NCDRILL_FILE)
- top_copper = read(TOP_COPPER_FILE)
- assert isinstance(ncdrill, ExcellonFile)
- assert isinstance(top_copper, GerberFile)
-
-
-def test_load_from_string():
- with open(NCDRILL_FILE, "r") as f:
- ncdrill = loads(f.read())
- with open(TOP_COPPER_FILE, "r") as f:
- top_copper = loads(f.read())
- assert isinstance(ncdrill, ExcellonFile)
- assert isinstance(top_copper, GerberFile)
-
-
-def test_file_type_validation():
- """ Test file format validation
- """
- pytest.raises(ParseError, read, __file__)