Created
September 11, 2015 15:19
-
-
Save germs12/fa5177cbe299f6e75b64 to your computer and use it in GitHub Desktop.
SPEC TEMPLATE API/V2/
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 "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