UNPKG

233 Btext/coffeescriptView Raw
1test_signs_in_rationals = ->
2 run_test [
3
4 # I found out about basic mistakes in
5 # these very very late, better to
6 # have those tests early on.
7
8 "1/1",
9 "1",
10
11 "-1/1",
12 "-1",
13
14 "1/(-1)",
15 "-1",
16
17 "(-1)/(-1)",
18 "1",
19
20 ]