Add inspect/details view
This commit is contained in:
11
tests/unit/controllers/inspect-test.js
Normal file
11
tests/unit/controllers/inspect-test.js
Normal file
@@ -0,0 +1,11 @@
|
||||
import { moduleFor, test } from 'ember-qunit';
|
||||
|
||||
moduleFor('controller:inspect', 'Unit | Controller | inspect', {
|
||||
needs: ['controller:application', 'service:storage']
|
||||
});
|
||||
|
||||
// Replace this with your real tests.
|
||||
test('it exists', function(assert) {
|
||||
let controller = this.subject();
|
||||
assert.ok(controller);
|
||||
});
|
||||
10
tests/unit/routes/inspect-test.js
Normal file
10
tests/unit/routes/inspect-test.js
Normal file
@@ -0,0 +1,10 @@
|
||||
import { moduleFor, test } from 'ember-qunit';
|
||||
|
||||
moduleFor('route:inspect', 'Unit | Route | inspect', {
|
||||
needs: ['service:storage']
|
||||
});
|
||||
|
||||
test('it exists', function(assert) {
|
||||
let route = this.subject();
|
||||
assert.ok(route);
|
||||
});
|
||||
Reference in New Issue
Block a user