Sha256: 28a0d42d68e496b6f83ef64c0bd64af9a4db19b39b6c7ae2cfe98ff7bce16e94

Contents?: true

Size: 1.11 KB

Versions: 87

Compression:

Stored size: 1.11 KB

Contents

require "spec_helper"

describe ItemsController do
  describe "routing" do

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

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

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

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

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

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

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

  end
end

Version data entries

87 entries across 87 versions & 1 rubygems

Version Path
enju_biblio-0.2.0.beta.3 spec/routing/items_routing_spec.rb
enju_biblio-0.2.0.beta.2 spec/routing/items_routing_spec.rb
enju_biblio-0.2.0.beta.1 spec/routing/items_routing_spec.rb
enju_biblio-0.1.3 spec/routing/items_routing_spec.rb
enju_biblio-0.1.2 spec/routing/items_routing_spec.rb
enju_biblio-0.1.1 spec/routing/items_routing_spec.rb
enju_biblio-0.1.0 spec/routing/items_routing_spec.rb
enju_biblio-0.1.0.pre71 spec/routing/items_routing_spec.rb
enju_biblio-0.1.0.pre70 spec/routing/items_routing_spec.rb
enju_biblio-0.1.0.pre69 spec/routing/items_routing_spec.rb
enju_biblio-0.1.0.pre68 spec/routing/items_routing_spec.rb
enju_biblio-0.1.0.pre67 spec/routing/items_routing_spec.rb
enju_biblio-0.1.0.pre66 spec/routing/items_routing_spec.rb
enju_biblio-0.1.0.pre65 spec/routing/items_routing_spec.rb
enju_biblio-0.1.0.pre64 spec/routing/items_routing_spec.rb
enju_biblio-0.1.0.pre63 spec/routing/items_routing_spec.rb
enju_biblio-0.1.0.pre62 spec/routing/items_routing_spec.rb
enju_biblio-0.1.0.pre61 spec/routing/items_routing_spec.rb
enju_biblio-0.1.0.pre60 spec/routing/items_routing_spec.rb
enju_biblio-0.1.0.pre59 spec/routing/items_routing_spec.rb