diff options
Diffstat (limited to 'gerber/tests/test_rs274x.py')
-rw-r--r-- | gerber/tests/test_rs274x.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gerber/tests/test_rs274x.py b/gerber/tests/test_rs274x.py new file mode 100644 index 0000000..f66a09e --- /dev/null +++ b/gerber/tests/test_rs274x.py @@ -0,0 +1,16 @@ +#! /usr/bin/env python +# -*- coding: utf-8 -*- + +# Author: Hamilton Kibbe <ham@hamiltonkib.be> +from ..rs274x import read, GerberFile +from tests import * + +import os + +TOP_COPPER_FILE = os.path.join(os.path.dirname(__file__), + 'resources/top_copper.GTL') + + +def test_read(): + top_copper = read(TOP_COPPER_FILE) + assert(isinstance(top_copper, GerberFile)) |