cleaning up tests ... consolidation, consistency...

This commit is contained in:
Jeremy Ashkenas
2010-04-03 10:39:32 -04:00
parent f99b5ad463
commit 4a85f3d499
31 changed files with 250 additions and 272 deletions

View File

@@ -0,0 +1,45 @@
num: 10
num: - 5
ok num is 5
num: -3
ok num is -3
num: +3
ok num is 3
num = * 10
ok num is 30
num: / 10
ok num is 3
val: false
val: or 'value'
ok val is 'value'
val = and 'other'
ok val is 'other'
val: null
val: ? 'value'
ok val is 'value'
val: 6
val: -(10)
ok val is -10
val: - (10)
ok val is -20