Sha256: a3936d8264e04c3671b59e28aa2fe8e8a704716ac3632b88ba26c44200d04bd6

Contents?: true

Size: 1.05 KB

Versions: 27

Compression:

Stored size: 1.05 KB

Contents

require 'rails_helper'

describe AgentsController do
  describe "routing" do

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

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

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

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

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

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

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

  end
end

Version data entries

27 entries across 27 versions & 1 rubygems

Version Path
enju_biblio-0.3.18 spec/routing/agents_routing_spec.rb
enju_biblio-0.3.17 spec/routing/agents_routing_spec.rb
enju_biblio-0.3.16 spec/routing/agents_routing_spec.rb
enju_biblio-0.3.15 spec/routing/agents_routing_spec.rb
enju_biblio-0.3.14 spec/routing/agents_routing_spec.rb
enju_biblio-0.3.13 spec/routing/agents_routing_spec.rb
enju_biblio-0.3.12 spec/routing/agents_routing_spec.rb
enju_biblio-0.3.11 spec/routing/agents_routing_spec.rb
enju_biblio-0.3.10 spec/routing/agents_routing_spec.rb
enju_biblio-0.3.10.rc.3 spec/routing/agents_routing_spec.rb
enju_biblio-0.3.10.rc.2 spec/routing/agents_routing_spec.rb
enju_biblio-0.3.10.rc.1 spec/routing/agents_routing_spec.rb
enju_biblio-0.3.9 spec/routing/agents_routing_spec.rb
enju_biblio-0.4.0.rc.1 spec/routing/agents_routing_spec.rb
enju_biblio-0.3.8 spec/routing/agents_routing_spec.rb
enju_biblio-0.3.7 spec/routing/agents_routing_spec.rb
enju_biblio-0.3.6 spec/routing/agents_routing_spec.rb
enju_biblio-0.4.0.beta.2 spec/routing/agents_routing_spec.rb
enju_biblio-0.4.0.beta.1 spec/routing/agents_routing_spec.rb
enju_biblio-0.3.5 spec/routing/agents_routing_spec.rb