Skip to content

Commit 148d65c

Browse files
committed
basic score code checks
1 parent 501368e commit 148d65c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/unit/test_pymas.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ def test_score_code():
3535
mas_code = p.score_code()
3636
esp_code = p.score_code(dest='esp')
3737

38+
assert mas_code.lower().startswith('package _')
39+
assert esp_code.lower().startswith('data sasep.out;')
40+
3841
with pytest.raises(ValueError):
3942
cas_code = p.score_code(dest='cas')
4043

0 commit comments

Comments
 (0)