-
-
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
e565b03
commit d73ca4c
Showing
4 changed files
with
91 additions
and
0 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
blueprints/controller-test/mocha-rfc-232-files/__root__/__testType__/__path__/__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 { setupTest } from 'ember-mocha'; | ||
|
||
describe('<%= friendlyTestDescription %>', function() { | ||
setupTest(); | ||
|
||
// Replace this with your real tests. | ||
it('exists', function() { | ||
let controller = this.owner.lookup('controller:<%= controllerPathName %>'); | ||
expect(controller).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 |
---|---|---|
|
@@ -110,6 +110,32 @@ describe('Blueprint: controller-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('controller-test foo', function() { | ||
return emberGenerateDestroy(['controller-test', 'foo'], _file => { | ||
expect(_file('tests/unit/controllers/foo-test.js')).to.equal( | ||
fixture('controller-test/mocha-rfc232.js') | ||
); | ||
}); | ||
}); | ||
|
||
it('controller-test foo/bar', function() { | ||
return emberGenerateDestroy(['controller-test', 'foo/bar'], _file => { | ||
expect(_file('tests/unit/controllers/foo/bar-test.js')).to.equal( | ||
fixture('controller-test/mocha-rfc232-nested.js') | ||
); | ||
}); | ||
}); | ||
}); | ||
}); | ||
|
||
describe('in app - module unification', function() { | ||
|
@@ -206,6 +232,32 @@ describe('Blueprint: controller-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('controller-test foo', function() { | ||
return emberGenerateDestroy(['controller-test', 'foo'], _file => { | ||
expect(_file('src/ui/routes/foo/controller-test.js')).to.equal( | ||
fixture('controller-test/mocha-rfc232.js') | ||
); | ||
}); | ||
}); | ||
|
||
it('controller-test foo/bar', function() { | ||
return emberGenerateDestroy(['controller-test', 'foo/bar'], _file => { | ||
expect(_file('src/ui/routes/foo/bar/controller-test.js')).to.equal( | ||
fixture('controller-test/mocha-rfc232-nested.js') | ||
); | ||
}); | ||
}); | ||
}); | ||
}); | ||
|
||
describe('in addon', function() { | ||
|
13 changes: 13 additions & 0 deletions
13
node-tests/fixtures/controller-test/mocha-rfc232-nested.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 { setupTest } from 'ember-mocha'; | ||
|
||
describe('Unit | Controller | foo/bar', function() { | ||
setupTest(); | ||
|
||
// Replace this with your real tests. | ||
it('exists', function() { | ||
let controller = this.owner.lookup('controller:foo/bar'); | ||
expect(controller).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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { expect } from 'chai'; | ||
import { describe, it } from 'mocha'; | ||
import { setupTest } from 'ember-mocha'; | ||
|
||
describe('Unit | Controller | foo', function() { | ||
setupTest(); | ||
|
||
// Replace this with your real tests. | ||
it('exists', function() { | ||
let controller = this.owner.lookup('controller:foo'); | ||
expect(controller).to.be.ok; | ||
}); | ||
}); |