Sha256: 20bdcbb7f1fbce2b91dba6b8b2172da9c835dbea204650efebce6a464454e429

Contents?: true

Size: 1.32 KB

Versions: 5

Compression:

Stored size: 1.32 KB

Contents

require 'rails_helper'

module DateBook
  RSpec.describe CalendarsController, folder: :routing do
    routes { DateBook::Engine.routes }

    describe 'Routing' do
      it 'routes to #index' do
        expect(get: '/calendars').
          to route_to(controller: 'date_book/calendars', action: 'index')
      end

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

      it 'routes to #show' do
        expect(get: '/calendars/slug')
          .to route_to('date_book/calendars#show', id: 'slug')
      end

      it 'routes to #edit' do
        expect(get: '/calendars/slug/edit')
          .to route_to('date_book/calendars#edit', id: 'slug')
      end

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

      it 'routes to #update via PUT' do
        expect(put: '/calendars/slug')
          .to route_to('date_book/calendars#update', id: 'slug')
      end

      it 'routes to #update via PATCH' do
        expect(patch: '/calendars/slug')
          .to route_to('date_book/calendars#update', id: 'slug')
      end

      it 'routes to #destroy' do
        expect(delete: '/calendars/slug')
          .to route_to('date_book/calendars#destroy', id: 'slug')
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
date_book-0.0.6 spec/routing/date_book/calendars_routing_spec.rb
date_book-0.0.5 spec/routing/date_book/calendars_routing_spec.rb
date_book-0.0.3 spec/routing/date_book/calendars_routing_spec.rb
date_book-0.0.2 spec/routing/date_book/calendars_routing_spec.rb
date_book-0.0.1 spec/routing/date_book/calendars_routing_spec.rb