John Cowen de6644675d
ui: Brings the new ACLs into line with the new repo folder structure (#4857)
This PR updates the folder structure and naming of the new ACLs, the same as #4694 .
2018-10-26 18:40:51 +01:00

20 lines
502 B
JavaScript

import { moduleFor, test } from 'ember-qunit';
moduleFor('route:dc/acls/policies/create', 'Unit | Route | dc/acls/policies/create', {
// Specify the other units that are required for this test.
needs: [
'service:repository/policy',
'service:repository/token',
'service:repository/dc',
'service:feedback',
'service:logger',
'service:settings',
'service:flashMessages',
],
});
test('it exists', function(assert) {
let route = this.subject();
assert.ok(route);
});