Roughing in failure and success (will revisit)

This commit is contained in:
Matthew Dillon 2015-06-28 19:36:49 -08:00
parent 503f24882a
commit 5914360cc6
10 changed files with 53 additions and 1 deletions

View file

@ -0,0 +1,4 @@
import Ember from 'ember';
export default Ember.Route.extend({
});

View file

@ -0,0 +1 @@
<h3>Failure</h3>

View file

@ -0,0 +1,4 @@
import Ember from 'ember';
export default Ember.Route.extend({
});

View file

@ -0,0 +1 @@
<h3>Success</h3>

View file

@ -0,0 +1,4 @@
import Ember from 'ember';
export default Ember.Route.extend({
});

View file

@ -0,0 +1 @@
{{outlet}}

View file

@ -21,7 +21,11 @@ Router.map(function() {
this.route('show', { path: ':strain_id' }); this.route('show', { path: ':strain_id' });
}); });
this.route('users', function() { this.route('users', function() {
this.route('new'); this.route('new', function() {
this.route('fail');
this.route('success');
this.route('verify', { path: ':nonce' });
});
}); });
}); });

View file

@ -0,0 +1,11 @@
import { moduleFor, test } from 'ember-qunit';
moduleFor('route:users/new/fail', 'Unit | Route | users/new/fail', {
// Specify the other units that are required for this test.
// needs: ['controller:foo']
});
test('it exists', function(assert) {
var route = this.subject();
assert.ok(route);
});

View file

@ -0,0 +1,11 @@
import { moduleFor, test } from 'ember-qunit';
moduleFor('route:users/new/success', 'Unit | Route | users/new/success', {
// Specify the other units that are required for this test.
// needs: ['controller:foo']
});
test('it exists', function(assert) {
var route = this.subject();
assert.ok(route);
});

View file

@ -0,0 +1,11 @@
import { moduleFor, test } from 'ember-qunit';
moduleFor('route:users/new/verify', 'Unit | Route | users/new/verify', {
// Specify the other units that are required for this test.
// needs: ['controller:foo']
});
test('it exists', function(assert) {
var route = this.subject();
assert.ok(route);
});