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
842 B
36 lines
842 B
12 years ago
|
require "spec_helper"
|
||
|
|
||
|
describe Users::CnamesController do
|
||
|
describe "routing" do
|
||
|
|
||
|
it "routes to #index" do
|
||
|
get("/cnames").should route_to("users/cnames#index")
|
||
|
end
|
||
|
|
||
|
it "routes to #new" do
|
||
|
get("/cnames/new").should route_to("users/cnames#new")
|
||
|
end
|
||
|
|
||
|
it "routes to #show" do
|
||
|
get("/cnames/1").should route_to("users/cnames#show", :id => "1")
|
||
|
end
|
||
|
|
||
|
it "routes to #edit" do
|
||
|
get("/cnames/1/edit").should route_to("users/cnames#edit", :id => "1")
|
||
|
end
|
||
|
|
||
|
it "routes to #create" do
|
||
|
post("/cnames").should route_to("users/cnames#create")
|
||
|
end
|
||
|
|
||
|
it "routes to #update" do
|
||
|
put("/cnames/1").should route_to("users/cnames#update", :id => "1")
|
||
|
end
|
||
|
|
||
|
it "routes to #destroy" do
|
||
|
delete("/cnames/1").should route_to("users/cnames#destroy", :id => "1")
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|