2018-12-29 20:35:04 +01:00
|
|
|
import { module, test } from 'qunit';
|
|
|
|
import { setupTest } from 'ember-qunit';
|
2015-10-25 19:38:14 +01:00
|
|
|
|
2018-12-29 20:35:04 +01:00
|
|
|
module('Unit | Service | encryption', function(hooks) {
|
|
|
|
setupTest(hooks);
|
2015-10-25 19:38:14 +01:00
|
|
|
|
2018-12-29 20:35:04 +01:00
|
|
|
// Replace this with your real tests.
|
|
|
|
test('it exists', function(assert) {
|
|
|
|
let service = this.owner.lookup('service:encryption');
|
|
|
|
assert.ok(service);
|
|
|
|
});
|
2015-10-25 19:38:14 +01:00
|
|
|
});
|