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