diff options
author | Hamilton Kibbe <hamilton.kibbe@gmail.com> | 2014-10-10 23:07:51 -0400 |
---|---|---|
committer | Hamilton Kibbe <hamilton.kibbe@gmail.com> | 2014-10-10 23:07:51 -0400 |
commit | ae3bbff8b0849e0b49dc139396d7f8c57334a7b8 (patch) | |
tree | dfe2de456d950f4f09c8d200b42fb21677e20a04 /gerber/tests/test_cam.py | |
parent | 76c03a55c91addff71339d80cf17560926f1580b (diff) | |
download | gerbonara-ae3bbff8b0849e0b49dc139396d7f8c57334a7b8.tar.gz gerbonara-ae3bbff8b0849e0b49dc139396d7f8c57334a7b8.tar.bz2 gerbonara-ae3bbff8b0849e0b49dc139396d7f8c57334a7b8.zip |
Added excellon format detection
Diffstat (limited to 'gerber/tests/test_cam.py')
-rw-r--r-- | gerber/tests/test_cam.py | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/gerber/tests/test_cam.py b/gerber/tests/test_cam.py new file mode 100644 index 0000000..4af1984 --- /dev/null +++ b/gerber/tests/test_cam.py @@ -0,0 +1,50 @@ +#! /usr/bin/env python +# -*- coding: utf-8 -*- + +# Author: Hamilton Kibbe <ham@hamiltonkib.be> + +from ..cam import CamFile, FileSettings +from tests import * + + +def test_smoke_filesettings(): + """ Smoke test FileSettings class + """ + fs = FileSettings() + + +def test_filesettings_defaults(): + """ Test FileSettings default values + """ + fs = FileSettings() + assert_equal(fs.format, (2, 5)) + assert_equal(fs.notation, 'absolute') + assert_equal(fs.zero_suppression, 'trailing') + assert_equal(fs.units, 'inch') + + +def test_filesettings_dict(): + """ Test FileSettings Dict + """ + fs = FileSettings() + assert_equal(fs['format'], (2, 5)) + assert_equal(fs['notation'], 'absolute') + assert_equal(fs['zero_suppression'], 'trailing') + assert_equal(fs['units'], 'inch') + + +def test_filesettings_assign(): + """ Test FileSettings attribute assignment + """ + fs = FileSettings() + fs.units = 'test' + fs.notation = 'test' + fs.zero_suppression = 'test' + fs.format = 'test' + assert_equal(fs.units, 'test') + assert_equal(fs.notation, 'test') + assert_equal(fs.zero_suppression, 'test') + assert_equal(fs.format, 'test') + +def test_smoke_camfile(): + cf = CamFile |