Sha256: e8408c2657f5b55d761479203e01274638c5dfcaa0404e5fdd8e9e0bc4682365

Contents?: true

Size: 1.41 KB

Versions: 9

Compression:

Stored size: 1.41 KB

Contents

require 'rails_helper'

describe ManifestationsController do
  describe "routing" do

    it "recognizes and generates #index" do
      { :get => "/manifestations" }.should route_to(:controller => "manifestations", :action => "index")
    end

    it "recognizes and generates #new" do
      { :get => "/manifestations/new" }.should route_to(:controller => "manifestations", :action => "new")
    end

    it "recognizes and generates #show" do
      { :get => "/manifestations/1" }.should route_to(:controller => "manifestations", :action => "show", :id => "1")
    end

    it "recognizes ISBN" do
      { :get => "/isbn/4798002062" }.should route_to(:controller => "manifestations", :action => "index", :isbn_id => "4798002062")
    end

    it "recognizes and generates #edit" do
      { :get => "/manifestations/1/edit" }.should route_to(:controller => "manifestations", :action => "edit", :id => "1")
    end

    it "recognizes and generates #create" do
      { :post => "/manifestations" }.should route_to(:controller => "manifestations", :action => "create")
    end

    it "recognizes and generates #update" do
      { :put => "/manifestations/1" }.should route_to(:controller => "manifestations", :action => "update", :id => "1")
    end

    it "recognizes and generates #destroy" do
      { :delete => "/manifestations/1" }.should route_to(:controller => "manifestations", :action => "destroy", :id => "1")
    end

  end
end

Version data entries

9 entries across 8 versions & 2 rubygems

Version Path
enju_biblio-0.2.5 spec/routing/manifestations_routing_spec.rb
enju_biblio-0.2.4 spec/routing/manifestations_routing_spec.rb
enju_biblio-0.2.3 spec/routing/manifestations_routing_spec.rb
enju_biblio-0.2.2 spec/routing/manifestations_routing_spec.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/enju_biblio-0.2.1/spec/routing/manifestations_routing_spec.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/enju_biblio-0.2.0/spec/routing/manifestations_routing_spec.rb
enju_biblio-0.2.1 spec/routing/manifestations_routing_spec.rb
enju_biblio-0.2.0 spec/routing/manifestations_routing_spec.rb
enju_biblio-0.2.0.beta.4 spec/routing/manifestations_routing_spec.rb