-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
acd144f
commit f36e71e
Showing
3 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
blueprints/mixin-test/mocha-rfc-232-files/__root__/__testType__/__name__-test.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { expect } from 'chai'; | ||
import { describe, it } from 'mocha'; | ||
import EmberObject from '@ember/object'; | ||
import <%= classifiedModuleName %>Mixin from '<%= dasherizedPackageName %>/mixins/<%= dasherizedModuleName %>'; | ||
|
||
describe('<%= friendlyTestName %>', function() { | ||
// Replace this with your real tests. | ||
it('works', function() { | ||
let <%= classifiedModuleName %>Object = EmberObject.extend(<%= classifiedModuleName %>Mixin); | ||
let subject = <%= classifiedModuleName %>Object.create(); | ||
expect(subject).to.be.ok; | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,6 +53,24 @@ describe('Blueprint: mixin-test', function() { | |
}); | ||
}); | ||
}); | ||
|
||
describe('with [email protected]', function() { | ||
beforeEach(function() { | ||
modifyPackages([ | ||
{ name: 'ember-cli-qunit', delete: true }, | ||
{ name: 'ember-mocha', dev: true }, | ||
]); | ||
generateFakePackageManifest('ember-mocha', '0.14.0'); | ||
}); | ||
|
||
it('mixin-test foo', function() { | ||
return emberGenerateDestroy(['mixin-test', 'foo'], _file => { | ||
expect(_file('tests/unit/mixins/foo-test.js')).to.equal( | ||
fixture('mixin-test/mocha-rfc232.js') | ||
); | ||
}); | ||
}); | ||
}); | ||
}); | ||
|
||
describe('in app - module unification', function() { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { expect } from 'chai'; | ||
import { describe, it } from 'mocha'; | ||
import EmberObject from '@ember/object'; | ||
import FooMixin from 'my-app/mixins/foo'; | ||
|
||
describe('Unit | Mixin | foo', function() { | ||
// Replace this with your real tests. | ||
it('works', function() { | ||
let FooObject = EmberObject.extend(FooMixin); | ||
let subject = FooObject.create(); | ||
expect(subject).to.be.ok; | ||
}); | ||
}); |