Sha256: c481e244a2621743bcbdd5b9c5c29ec097f1e106715ed37a0bdf71041768411e
Contents?: true
Size: 1.05 KB
Versions: 43
Compression:
Stored size: 1.05 KB
Contents
require "spec_helper" describe SeriesHasManifestationsController do describe "routing" do it "routes to #index" do get("/series_has_manifestations").should route_to("series_has_manifestations#index") end it "routes to #new" do get("/series_has_manifestations/new").should route_to("series_has_manifestations#new") end it "routes to #show" do get("/series_has_manifestations/1").should route_to("series_has_manifestations#show", :id => "1") end it "routes to #edit" do get("/series_has_manifestations/1/edit").should route_to("series_has_manifestations#edit", :id => "1") end it "routes to #create" do post("/series_has_manifestations").should route_to("series_has_manifestations#create") end it "routes to #update" do put("/series_has_manifestations/1").should route_to("series_has_manifestations#update", :id => "1") end it "routes to #destroy" do delete("/series_has_manifestations/1").should route_to("series_has_manifestations#destroy", :id => "1") end end end
Version data entries
43 entries across 43 versions & 1 rubygems