Sha256: dccb821c3359428024775ab76009602662c466a7ecb9193c2d51206f6f51bbef

Contents?: true

Size: 1.26 KB

Versions: 27

Compression:

Stored size: 1.26 KB

Contents

require "rails_helper"

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

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

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

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

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

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

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

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

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

  end
end

Version data entries

27 entries across 27 versions & 1 rubygems

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