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
763 B

13 years ago
require "spec_helper"
describe MxesController do
describe "routing" do
it "routes to #index" do
get("/mxes").should route_to("mxes#index")
end
it "routes to #new" do
get("/mxes/new").should route_to("mxes#new")
end
it "routes to #show" do
get("/mxes/1").should route_to("mxes#show", :id => "1")
end
it "routes to #edit" do
get("/mxes/1/edit").should route_to("mxes#edit", :id => "1")
end
it "routes to #create" do
post("/mxes").should route_to("mxes#create")
end
it "routes to #update" do
put("/mxes/1").should route_to("mxes#update", :id => "1")
end
it "routes to #destroy" do
delete("/mxes/1").should route_to("mxes#destroy", :id => "1")
end
end
end