Sha256: 57d06a9d542878d694e163cc5fcdebf458e30eec9360e0f4cf0139552bdfa220

Contents?: true

Size: 1.06 KB

Versions: 25

Compression:

Stored size: 1.06 KB

Contents

require "rails_helper"

RSpec.describe Auth::ImagesController, type: :routing do
  describe "routing" do

    it "routes to #index" do
      expect(:get => "/auth/images").to route_to("auth/images#index")
    end

    it "routes to #new" do
      expect(:get => "/auth/images/new").to route_to("auth/images#new")
    end

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

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

    it "routes to #create" do
      expect(:post => "/auth/images").to route_to("auth/images#create")
    end

    it "routes to #update via PUT" do
      expect(:put => "/auth/images/1").to route_to("auth/images#update", :id => "1")
    end

    it "routes to #update via PATCH" do
      expect(:patch => "/auth/images/1").to route_to("auth/images#update", :id => "1")
    end

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

  end
end

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
wordjelly-auth-1.2.8 spec/routing/auth/images_routing_spec.rb
wordjelly-auth-1.2.6 spec/routing/auth/images_routing_spec.rb
wordjelly-auth-1.2.5 spec/routing/auth/images_routing_spec.rb
wordjelly-auth-1.2.4 spec/routing/auth/images_routing_spec.rb
wordjelly-auth-1.2.3 spec/routing/auth/images_routing_spec.rb
wordjelly-auth-1.2.2 spec/routing/auth/images_routing_spec.rb
wordjelly-auth-1.2.1 spec/routing/auth/images_routing_spec.rb
wordjelly-auth-1.2.0 spec/routing/auth/images_routing_spec.rb
wordjelly-auth-1.1.9 spec/routing/auth/images_routing_spec.rb
wordjelly-auth-1.1.8 spec/routing/auth/images_routing_spec.rb
wordjelly-auth-1.1.7 spec/routing/auth/images_routing_spec.rb
wordjelly-auth-1.1.6 spec/routing/auth/images_routing_spec.rb
wordjelly-auth-1.1.5 spec/routing/auth/images_routing_spec.rb
wordjelly-auth-1.1.4 spec/routing/auth/images_routing_spec.rb
wordjelly-auth-1.1.3 spec/routing/auth/images_routing_spec.rb
wordjelly-auth-1.1.2 spec/routing/auth/images_routing_spec.rb
wordjelly-auth-1.1.1 spec/routing/auth/images_routing_spec.rb
wordjelly-auth-1.1.0 spec/routing/auth/images_routing_spec.rb
wordjelly-auth-1.0.9 spec/routing/auth/images_routing_spec.rb
wordjelly-auth-1.0.8 spec/routing/auth/images_routing_spec.rb