Created
December 22, 2011 20:44
-
-
Save jbueza/1511782 to your computer and use it in GitHub Desktop.
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
describe("Adding a user to a particular application - Service Spec", function () { | |
var service = services['addUserToApplication']; | |
it("should have a name", function () { | |
expect(service.name).toEqual("addUserToApplication"); | |
}); | |
it("should have a url", function () { | |
expect(service.uri).toEqual("/Application/AddUser"); | |
}); | |
it("should be a POST", function () { | |
expect(service.options.method).toEqual("post"); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment