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