9 lines
114 B
CoffeeScript
Executable file
9 lines
114 B
CoffeeScript
Executable file
define [], ->
|
|
|
|
# Some code under test
|
|
plus: (a, b) ->
|
|
a + b
|
|
|
|
# not covered
|
|
minus: (a, b) ->
|
|
a - b
|