diff options
author | Paulo Henrique Silva <ph.silva@gmail.com> | 2015-01-26 00:20:01 -0200 |
---|---|---|
committer | Paulo Henrique Silva <ph.silva@gmail.com> | 2015-01-26 00:20:01 -0200 |
commit | 2586692a1700dcdcae65ed8342e36bb0dd01c166 (patch) | |
tree | 4528822d7187b2215a91e18361950ce608ccf569 /gerber/tests/test_excellon_statements.py | |
parent | d5157c1d076360e3702a910f119b9fc44ff76df5 (diff) | |
parent | 939f782728a1b16f85ad2697b03ef026a88ad354 (diff) | |
download | gerbonara-2586692a1700dcdcae65ed8342e36bb0dd01c166.tar.gz gerbonara-2586692a1700dcdcae65ed8342e36bb0dd01c166.tar.bz2 gerbonara-2586692a1700dcdcae65ed8342e36bb0dd01c166.zip |
Merge pull request #7 from curtacircuitos/zeros_convention
Zeros convention
Diffstat (limited to 'gerber/tests/test_excellon_statements.py')
-rw-r--r-- | gerber/tests/test_excellon_statements.py | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/gerber/tests/test_excellon_statements.py b/gerber/tests/test_excellon_statements.py index 4c3201b..2e508ff 100644 --- a/gerber/tests/test_excellon_statements.py +++ b/gerber/tests/test_excellon_statements.py @@ -141,12 +141,22 @@ def test_unitstmt_factory(): line = 'INCH,LZ' stmt = UnitStmt.from_excellon(line) assert_equal(stmt.units, 'inch') - assert_equal(stmt.zero_suppression, 'trailing') + assert_equal(stmt.zeros, 'leading') + + line = 'INCH,TZ' + stmt = UnitStmt.from_excellon(line) + assert_equal(stmt.units, 'inch') + assert_equal(stmt.zeros, 'trailing') + + line = 'METRIC,LZ' + stmt = UnitStmt.from_excellon(line) + assert_equal(stmt.units, 'metric') + assert_equal(stmt.zeros, 'leading') line = 'METRIC,TZ' stmt = UnitStmt.from_excellon(line) assert_equal(stmt.units, 'metric') - assert_equal(stmt.zero_suppression, 'leading') + assert_equal(stmt.zeros, 'trailing') def test_unitstmt_dump(): |