blob: b1d046870066017f7c6f8fd8040d4a42106ea079 (
plain)
1
2
3
4
5
6
7
|
require 'rails_helper'
describe '/registrations' do
it 'routes to the create action' do
expect(post: 'registrations').to route_to(controller: 'registrations', action: 'create')
end
end
|