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