6bcb98ea71
* Add copyright headers to UI files * Ensure copywrite file ignores external libs
18 lines
493 B
JavaScript
18 lines
493 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import EmberObject from '@ember/object';
|
|
import RoleAsManyMixin from 'consul-ui/mixins/role/as-many';
|
|
import { module, test } from 'qunit';
|
|
|
|
module('Unit | Mixin | role/as many', function () {
|
|
// Replace this with your real tests.
|
|
test('it works', function (assert) {
|
|
let RoleAsManyObject = EmberObject.extend(RoleAsManyMixin);
|
|
let subject = RoleAsManyObject.create();
|
|
assert.ok(subject);
|
|
});
|
|
});
|