Sha256: f00f4110b899450efdeb3d48f2a57180414877f6c821c1136a0ace7668325d2e

Contents?: true

Size: 944 Bytes

Versions: 13

Compression:

Stored size: 944 Bytes

Contents

require "spec_helper"

describe UserImportFilesController do
  describe "routing" do

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

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

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

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

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

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

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

  end
end

Version data entries

13 entries across 13 versions & 2 rubygems

Version Path
enju_biblio-0.2.0.beta.3 spec/routing/resource_import_files_routing_spec.rb
enju_biblio-0.2.0.beta.2 spec/routing/resource_import_files_routing_spec.rb
enju_leaf-1.2.0.beta.1 spec/routing/resource_import_files_routing_spec.rb
enju_leaf-1.1.4 spec/routing/resource_import_files_routing_spec.rb
enju_leaf-1.1.3 spec/routing/resource_import_files_routing_spec.rb
enju_leaf-1.1.2 spec/routing/resource_import_files_routing_spec.rb
enju_leaf-1.1.1 spec/routing/resource_import_files_routing_spec.rb
enju_leaf-1.1.0 spec/routing/resource_import_files_routing_spec.rb
enju_leaf-1.1.0.rc22 spec/routing/resource_import_files_routing_spec.rb
enju_leaf-1.1.0.rc21 spec/routing/resource_import_files_routing_spec.rb
enju_leaf-1.1.0.rc20 spec/routing/resource_import_files_routing_spec.rb
enju_leaf-1.1.0.rc19 spec/routing/resource_import_files_routing_spec.rb
enju_leaf-1.1.0.rc18 spec/routing/resource_import_files_routing_spec.rb