metamaps--metamaps/spec/routing/mappings_routing_spec.rb
2015-12-16 22:19:58 +08:00

22 lines
557 B
Ruby

require 'rails_helper'
RSpec.describe MappingsController, type: :routing do
describe 'routing' do
it 'routes to #show' do
expect(get: '/mappings/1').to route_to('mappings#show', id: '1')
end
it 'routes to #create' do
expect(post: '/mappings').to route_to('mappings#create')
end
it 'routes to #update via PUT' do
expect(put: '/mappings/1').to route_to('mappings#update', id: '1')
end
it 'routes to #destroy' do
expect(delete: '/mappings/1').to route_to('mappings#destroy', id: '1')
end
end
end