Sha256: 78862ca1e593567278fdf68f41dc87b07c9308ee69c869f0d8e44e933e5d9e78
Contents?: true
Size: 435 Bytes
Versions: 25
Compression:
Stored size: 435 Bytes
Contents
require 'rails_helper' module MnoEnterprise RSpec.describe Devise::RegistrationsController, type: :routing do routes { MnoEnterprise::Engine.routes } it 'routes to #new' do expect(get('/auth/users/sign_up')).to route_to("mno_enterprise/auth/registrations#new") end it 'routes to #create' do expect(post('/auth/users')).to route_to("mno_enterprise/auth/registrations#create") end end end
Version data entries
25 entries across 25 versions & 1 rubygems