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