Last active
August 29, 2015 14:06
-
-
Save DavidFrahm/3f82175c7e1dacafd066 to your computer and use it in GitHub Desktop.
Route testing
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
beforeEach(function() { | |
this.addMatchers({ | |
toHaveBeenLastCalledWith: function(expected) { | |
return this.actual.mostRecentCall.args[0] == expected; | |
}, | |
toHaveFulfilledAllRequests: function() { | |
var httpBackend = this.actual; | |
httpBackend.verifyNoOutstandingRequest(); | |
httpBackend.verifyNoOutstandingExpectation(); | |
return true; | |
} | |
}); | |
}); |
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
// TODO: Add actual route implementation here to help the spec make sense |
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
'use strict'; | |
describe("Routes", function () { | |
var appModule; | |
beforeEach(module('ngRoute')); | |
beforeEach(function () { | |
appModule = module('TheApp'); | |
}); | |
it("should request the-view.html for The View route", function () { | |
inject(function($route, $location, $rootScope, $httpBackend) { | |
$httpBackend.expectGET('/views/the-view.html').respond('VIEW); | |
// TODO: Uncomment to demo test failure "Unsatisfied requests" | |
// $httpBackend.expectGET('dummy.html').respond('Edit view'); | |
$location.path('/the-view/'); | |
$rootScope.$digest(); | |
// TODO: Comment to demo test failure "Unflushed requests" | |
// $httpBackend.flush(); | |
expect($httpBackend).toHaveFulfilledAllRequests(); | |
}); | |
}); | |
it("should set $rootScope.routeTitle to 'The Route Title' when $routeChangeStart event is called", function () { | |
inject(function($route, $location, $rootScope, $httpBackend) { | |
$httpBackend.when('GET', '/views/the-view.html').respond('VIEW); | |
$location.path('/the-view/'); | |
$rootScope.$digest(); | |
$httpBackend.flush(); | |
expect($route.current.title).toEqual("The Route Title"); | |
}); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment