You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
782 B
36 lines
782 B
12 years ago
|
require "spec_helper"
|
||
|
|
||
|
describe Users::AsController do
|
||
|
describe "routing" do
|
||
|
|
||
|
it "routes to #index" do
|
||
|
get("/as").should route_to("users/as#index")
|
||
|
end
|
||
|
|
||
|
it "routes to #new" do
|
||
|
get("/as/new").should route_to("users/as#new")
|
||
|
end
|
||
|
|
||
|
it "routes to #show" do
|
||
|
get("/as/1").should route_to("users/as#show", :id => "1")
|
||
|
end
|
||
|
|
||
|
it "routes to #edit" do
|
||
|
get("/as/1/edit").should route_to("users/as#edit", :id => "1")
|
||
|
end
|
||
|
|
||
|
it "routes to #create" do
|
||
|
post("/as").should route_to("users/as#create")
|
||
|
end
|
||
|
|
||
|
it "routes to #update" do
|
||
|
put("/as/1").should route_to("users/as#update", :id => "1")
|
||
|
end
|
||
|
|
||
|
it "routes to #destroy" do
|
||
|
delete("/as/1").should route_to("users/as#destroy", :id => "1")
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|