mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
Calculate benchmarks for measures based on a weighted average of survey and admin data items Added architectural records
39 lines
1.1 KiB
Ruby
39 lines
1.1 KiB
Ruby
require 'rails_helper'
|
|
|
|
module Legacy
|
|
RSpec.describe QuestionsController, type: :routing do
|
|
describe 'routing' do
|
|
it 'routes to #index' do
|
|
expect(get: '/questions').to route_to('legacy/questions#index')
|
|
end
|
|
|
|
it 'routes to #new' do
|
|
expect(get: '/questions/new').to route_to('legacy/questions#new')
|
|
end
|
|
|
|
it 'routes to #show' do
|
|
expect(get: '/questions/1').to route_to('legacy/questions#show', id: '1')
|
|
end
|
|
|
|
it 'routes to #edit' do
|
|
expect(get: '/questions/1/edit').to route_to('legacy/questions#edit', id: '1')
|
|
end
|
|
|
|
it 'routes to #create' do
|
|
expect(post: '/questions').to route_to('legacy/questions#create')
|
|
end
|
|
|
|
it 'routes to #update via PUT' do
|
|
expect(put: '/questions/1').to route_to('legacy/questions#update', id: '1')
|
|
end
|
|
|
|
it 'routes to #update via PATCH' do
|
|
expect(patch: '/questions/1').to route_to('legacy/questions#update', id: '1')
|
|
end
|
|
|
|
it 'routes to #destroy' do
|
|
expect(delete: '/questions/1').to route_to('legacy/questions#destroy', id: '1')
|
|
end
|
|
end
|
|
end
|
|
end
|