Sha256: a18381592bafb16075f8242578cf97956c25aa04973ecdc45808009f66602c09

Contents?: true

Size: 807 Bytes

Versions: 4

Compression:

Stored size: 807 Bytes

Contents

require 'rails_helper'

module CitizenBudgetModel
  RSpec.describe UsersController, type: :routing do
    describe 'routing' do
      routes { Engine.routes }

      it 'routes to #index' do
        expect(get: '/users').to route_to('citizen_budget_model/users#index')
      end

      it 'routes to #new' do
        expect(get: '/users/new').to route_to('citizen_budget_model/users#new')
      end

      it 'routes to #edit' do
        expect(get: '/users/1/edit').to route_to('citizen_budget_model/users#edit', id: '1')
      end

      it 'routes to #create' do
        expect(post: '/users').to route_to('citizen_budget_model/users#create')
      end

      it 'routes to #update' do
        expect(put: '/users/1').to route_to('citizen_budget_model/users#update', id: '1')
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
citizen_budget_model-0.0.4 spec/routing/citizen_budget_model/users_routing_spec.rb
citizen_budget_model-0.0.3 spec/routing/citizen_budget_model/users_routing_spec.rb
citizen_budget_model-0.0.2 spec/routing/citizen_budget_model/users_routing_spec.rb
citizen_budget_model-0.0.1 spec/routing/citizen_budget_model/users_routing_spec.rb