-
-
Save chrism/e544eb1fb2afa9b0daa6a80dcad8637d to your computer and use it in GitHub Desktop.
Stub Controller in Route Unit Test
This file contains hidden or 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
| import Ember from 'ember'; | |
| export default Ember.Controller.extend({ | |
| appName: 'Ember Twiddle' | |
| }); |
This file contains hidden or 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
| import Ember from 'ember'; | |
| export default Ember.Route.extend({ | |
| setupController(controller, model) { | |
| this._super(...arguments); | |
| controller.set('myProp', 'test'); | |
| } | |
| }); |
This file contains hidden or 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
| import Resolver from '../../resolver'; | |
| import config from '../../config/environment'; | |
| const resolver = Resolver.create(); | |
| resolver.namespace = { | |
| modulePrefix: config.modulePrefix, | |
| podModulePrefix: config.podModulePrefix | |
| }; | |
| export default resolver; |
This file contains hidden or 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
| import resolver from './helpers/resolver'; | |
| import { | |
| setResolver | |
| } from 'ember-qunit'; | |
| setResolver(resolver); |
This file contains hidden or 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
| import { moduleFor, test } from 'ember-qunit'; | |
| moduleFor('route:application', 'Application Route', { | |
| // Specify the other units that are required for this test. | |
| // needs: ['controller:application'] | |
| }); | |
| test('setupController sets properties on controller', function(assert) { | |
| // Stub out the controller as an Ember.Object | |
| const controller = Ember.Object.create(); | |
| // Set a prop on that instance | |
| controller.set('aProp', 'testing'); | |
| let route = this.subject(); | |
| // Assign our stub as the route's controller | |
| route.controller = controller; | |
| // Explicitly call setupController with our stub | |
| route.setupController(controller); | |
| assert.equal(route.controller.get('aProp'), 'testing'); | |
| //This prop is set from setupController | |
| assert.equal(route.controller.get('myProp'), 'test'); | |
| }); |
This file contains hidden or 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
| { | |
| "version": "0.10.4", | |
| "EmberENV": { | |
| "FEATURES": {} | |
| }, | |
| "options": { | |
| "use_pods": false, | |
| "enable-testing": true | |
| }, | |
| "dependencies": { | |
| "jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js", | |
| "ember": "2.6.2", | |
| "ember-data": "2.6.2", | |
| "ember-template-compiler": "2.6.2" | |
| }, | |
| "addons": { | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment