Skip to content

Instantly share code, notes, and snippets.

@germs12
Created September 11, 2015 15:19
Show Gist options
  • Save germs12/fa5177cbe299f6e75b64 to your computer and use it in GitHub Desktop.
Save germs12/fa5177cbe299f6e75b64 to your computer and use it in GitHub Desktop.
SPEC TEMPLATE API/V2/
describe "GET index unauthenticated" do
end
describe "GET index SPONSOR authenticated" do
end
describe "GET index GUEST authenticated" do
end
describe "GET show unauthenticated" do
end
describe "GET show SPONSOR authenticated" do
end
describe "GET show GUEST authenticated" do
end
describe "POST create unauthenticated" do
end
describe "POST create SPONSOR authenticated" do
end
describe "POST create SPONSOR authenticated with ERRORS" do
end
describe "POST create GUEST authenticated" do
end
describe "PUT update unauthenticated" do
end
describe "PUT update SPONSOR authenticated" do
end
describe "PUT update SPONSOR authenticated with ERRORS" do
end
describe "PUT update GUEST authenticated" do
end
describe "DELETE destroy unauthenticated" do
end
describe "DELETE destroy SPONSOR authenticated" do
end
describe "DELETE destroy SPONSOR authenticated with ERRORS" do
end
describe "DELETE destroy GUEST authenticated" do
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment