Files
ionic-framework/hacking/RouteController.unit.js
2013-09-19 23:48:11 -05:00

15 lines
266 B
JavaScript

describe('RouteController', function() {
beforeEach(function() {
});
it('Should init', function() {
var rc = new RouteViewController({
root: 'hacking/route.html';
});
rc.when('/', function() {
console.log('Loaded');
});
});
});