Sha256: 7e08396f5a3d132daa82e6669dc75520814de920f3ec42b66a487015b18f57c4

Contents?: true

Size: 1016 Bytes

Versions: 26

Compression:

Stored size: 1016 Bytes

Contents

require "spec_helper"

describe ResourceExportFilesController do
  describe "routing" do

    it "routes to #index" do
      get("/resource_export_files").should route_to("resource_export_files#index")
    end

    it "routes to #new" do
      get("/resource_export_files/new").should route_to("resource_export_files#new")
    end

    it "routes to #show" do
      get("/resource_export_files/1").should route_to("resource_export_files#show", :id => "1")
    end

    it "routes to #edit" do
      get("/resource_export_files/1/edit").should route_to("resource_export_files#edit", :id => "1")
    end

    it "routes to #create" do
      post("/resource_export_files").should route_to("resource_export_files#create")
    end

    it "routes to #update" do
      put("/resource_export_files/1").should route_to("resource_export_files#update", :id => "1")
    end

    it "routes to #destroy" do
      delete("/resource_export_files/1").should route_to("resource_export_files#destroy", :id => "1")
    end

  end
end

Version data entries

26 entries across 26 versions & 1 rubygems

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