UNPKG

181 Btext/coffeescriptView Raw
1test_numerator = ->
2 run_test [
3
4 "numerator(2/3)",
5 "2",
6
7 "numerator(x)",
8 "x",
9
10 "numerator(1/x)",
11 "1",
12
13 "numerator(a+b)",
14 "a+b",
15
16 "numerator(1/a+1/b)",
17 "a+b",
18 ]