2018-10-19 15:17:02 +00:00
|
|
|
import { moduleFor, test } from 'ember-qunit';
|
|
|
|
|
|
|
|
moduleFor('route:dc/acls', 'Unit | Route | dc/acls', {
|
|
|
|
// Specify the other units that are required for this test.
|
|
|
|
needs: [
|
2018-10-26 17:40:51 +00:00
|
|
|
'service:repository/token',
|
2018-10-19 15:17:02 +00:00
|
|
|
'service:feedback',
|
|
|
|
'service:logger',
|
|
|
|
'service:settings',
|
|
|
|
'service:flashMessages',
|
|
|
|
],
|
|
|
|
});
|
|
|
|
|
|
|
|
test('it exists', function(assert) {
|
|
|
|
let route = this.subject();
|
|
|
|
assert.ok(route);
|
|
|
|
});
|