Sha256: 52f12255d5f21f842dfb07d3a68ae6c58a38653f3c70f7976bfebaedff4043bb
Contents?: true
Size: 1.43 KB
Versions: 1
Compression:
Stored size: 1.43 KB
Contents
import { InjectedProperty } from '@ember/-internals/metal'; import { DEBUG } from '@glimmer/env'; import EmberObject from '../lib/system/object'; import { buildOwner } from 'internal-test-helpers'; import { moduleFor, AbstractTestCase } from 'internal-test-helpers'; moduleFor( 'inject', class extends AbstractTestCase { ['@test attempting to inject a nonexistent container key should error']() { let owner = buildOwner(); let AnObject = EmberObject.extend({ foo: new InjectedProperty('bar', 'baz'), }); owner.register('foo:main', AnObject); expectAssertion(() => { owner.lookup('foo:main'); }, /Attempting to inject an unknown injection: 'bar:baz'/); } ['@test factories should return a list of lazy injection full names'](assert) { if (DEBUG) { let AnObject = EmberObject.extend({ foo: new InjectedProperty('foo', 'bar'), bar: new InjectedProperty('quux'), }); assert.deepEqual( AnObject._lazyInjections(), { foo: { specifier: 'foo:bar', source: undefined, namespace: undefined, }, bar: { specifier: 'quux:bar', source: undefined, namespace: undefined, }, }, 'should return injected container keys' ); } else { assert.expect(0); } } } );
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
discourse-ember-source-3.6.0.0 | dist/es/@ember/-internals/runtime/tests/inject_test.js |