Skip to content

Instantly share code, notes, and snippets.

@marcusoftnet
Created February 2, 2014 12:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcusoftnet/8767540 to your computer and use it in GitHub Desktop.
Save marcusoftnet/8767540 to your computer and use it in GitHub Desktop.
Filling out the it's
describe("Users", function (){
describe("Validation", function (){
it("validates an email address");
it("validates the presence of a name");
it("validates the password");
// and more
});
describe("Storage", function (){
it("stores an user");
it("retrieves an user by id");
it("finds users by email");
it("updates user details");
// and more
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment