Sha256: 6bdcbcbf5f141f85fef4a7d710dd46a2903e8d7304bf3647f4fbe55e7c5b45a2
Contents?: true
Size: 324 Bytes
Versions: 11
Compression:
Stored size: 324 Bytes
Contents
require 'rails_helper' RSpec.describe AuthorsController do describe 'routing' do it 'routes to #index' do expect(:get => '/authors').to route_to('authors#index') end it 'routes to #show' do expect(:get => '/authors/author-slug').to route_to('authors#show', id: 'author-slug') end end end
Version data entries
11 entries across 11 versions & 1 rubygems