From 4eb0e063bcd34c21b737023aa6ed5baed80658d1 Mon Sep 17 00:00:00 2001 From: jaseg Date: Sun, 13 Jun 2021 15:00:17 +0200 Subject: Repo re-org, make gerberex tests run --- gerber/tests/test_common.py | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 gerber/tests/test_common.py (limited to 'gerber/tests/test_common.py') diff --git a/gerber/tests/test_common.py b/gerber/tests/test_common.py deleted file mode 100644 index a6b1264..0000000 --- a/gerber/tests/test_common.py +++ /dev/null @@ -1,38 +0,0 @@ -#! /usr/bin/env python -# -*- coding: utf-8 -*- - -# Author: Hamilton Kibbe -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, "rU") as f: - ncdrill = loads(f.read()) - with open(TOP_COPPER_FILE, "rU") 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__) -- cgit