Please enable JavaScript to use RhodeCode Enterprise
Commit Description:
update options
Commit Description:
update options
require "spec_helper"
describe SubmissionsController do
describe "routing" do
it "routes to #index" do
get ( "/submissions" ) . should route_to ( "submissions#index" )
end
it "routes to #new" do
get ( "/submissions/new" ) . should route_to ( "submissions#new" )
end
it "routes to #show" do
get ( "/submissions/1" ) . should route_to ( "submissions#show" , :id => "1" )
end
it "routes to #edit" do
get ( "/submissions/1/edit" ) . should route_to ( "submissions#edit" , :id => "1" )
end
it "routes to #create" do
post ( "/submissions" ) . should route_to ( "submissions#create" )
end
it "routes to #update" do
put ( "/submissions/1" ) . should route_to ( "submissions#update" , :id => "1" )
end
it "routes to #destroy" do
delete ( "/submissions/1" ) . should route_to ( "submissions#destroy" , :id => "1" )
end
end
end
Site-wide shortcuts
/
Use quick search box
g h
Goto home page
g g
Goto my private gists page
g G
Goto my public gists page
n r
New repository page
n g
New gist page
Repositories
g s
Goto summary page
g c
Goto changelog page
g f
Goto files page
g F
Goto files page with file search activated
g p
Goto pull requests page
g o
Goto repository settings
g O
Goto repository permissions settings