10 lines
237 B
CoffeeScript
10 lines
237 B
CoffeeScript
import { dunlopCan } from 'dummy/helpers/dunlop-can'
|
|
import { module, test } from 'qunit'
|
|
|
|
module 'Unit | Helper | dunlop can'
|
|
|
|
# Replace this with your real tests.
|
|
test 'it works', (assert) ->
|
|
result = dunlopCan 42
|
|
assert.ok result
|