OILS / spec / comments.test.sh View on Github | oils.pub

12 lines, 2 significant
1## compare_shells: dash bash mksh
2
3# NOTE: The test harness isn't good for this test; it strips lines that start
4# with #
5
6#### comment
7echo foo #comment
8## stdout: foo
9
10#### not a comment without leading space x
11echo foo#not_comment
12## stdout: foo#not_comment