aljabar/node_modules/algebrite/tests/lcm.coffee

15 lines
150 B
CoffeeScript

test_lcm = ->
run_test [
"lcm(4,6)",
"12",
"lcm(4*x,6*x*y)",
"12*x*y",
# multiple arguments
"lcm(2,3,4)",
"12",
]