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

Version Path
enju_biblio-0.1.0.pre34 spec/routing/series_has_manifestations_routing_spec.rb
enju_biblio-0.1.0.pre33 spec/routing/series_has_manifestations_routing_spec.rb
enju_biblio-0.1.0.pre32 spec/routing/series_has_manifestations_routing_spec.rb
enju_biblio-0.1.0.pre31 spec/routing/series_has_manifestations_routing_spec.rb
enju_biblio-0.1.0.pre30 spec/routing/series_has_manifestations_routing_spec.rb
enju_biblio-0.1.0.pre29 spec/routing/series_has_manifestations_routing_spec.rb
enju_biblio-0.1.0.pre28 spec/routing/series_has_manifestations_routing_spec.rb
enju_biblio-0.1.0.pre27 spec/routing/series_has_manifestations_routing_spec.rb
enju_biblio-0.1.0.pre26 spec/routing/series_has_manifestations_routing_spec.rb
enju_biblio-0.1.0.pre25 spec/routing/series_has_manifestations_routing_spec.rb
enju_biblio-0.1.0.pre24 spec/routing/series_has_manifestations_routing_spec.rb
enju_biblio-0.1.0.pre23 spec/routing/series_has_manifestations_routing_spec.rb
enju_biblio-0.1.0.pre22 spec/routing/series_has_manifestations_routing_spec.rb
enju_biblio-0.1.0.pre21 spec/routing/series_has_manifestations_routing_spec.rb
enju_biblio-0.1.0.pre20 spec/routing/series_has_manifestations_routing_spec.rb
enju_biblio-0.1.0.pre19 spec/routing/series_has_manifestations_routing_spec.rb
enju_biblio-0.1.0.pre18 spec/routing/series_has_manifestations_routing_spec.rb
enju_biblio-0.1.0.pre17 spec/routing/series_has_manifestations_routing_spec.rb
enju_biblio-0.1.0.pre16 spec/routing/series_has_manifestations_routing_spec.rb
enju_biblio-0.1.0.pre15 spec/routing/series_has_manifestations_routing_spec.rb