Skip to content

Commit 748c7ff

Browse files
committed
pending tests
1 parent bead4ce commit 748c7ff

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

specs/Route.spec.js

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,23 @@ describe('a Route with custom props', function() {
9292
});
9393
});
9494

95+
describe('a Route', function() {
96+
it('requires a handler');
97+
});
98+
99+
describe('a child route', function() {
100+
describe('path', function() {
101+
it('defaults to /');
102+
it('is not required to start with /');
103+
it('can be inferred from its name');
104+
it('must contain all dynamic segments of its parent route path');
105+
});
106+
107+
describe('name', function() {
108+
it('cannot be reused');
109+
});
110+
});
111+
95112
// describe('a Router that renders on the server', function() {
96113
// it('works with async willTransitionTo()', function(done) {
97114
// var dataStore = 'goodbye';

0 commit comments

Comments
 (0)