12 lines
282 B
CoffeeScript
12 lines
282 B
CoffeeScript
import { moduleForModel, test } from 'ember-qunit'
|
|
|
|
moduleForModel 'dunlop-user', 'Unit | Model | dunlop user', {
|
|
# Specify the other units that are required for this test.
|
|
needs: []
|
|
}
|
|
|
|
test 'it exists', (assert) ->
|
|
model = @subject()
|
|
# store = @store()
|
|
assert.ok !!model
|