internetee-registry/spec/routing/registrant/domain_update_confirms_routing_spec.rb

9 lines
276 B
Ruby

require 'rails_helper'
RSpec.describe Registrant::DomainUpdateConfirmsController do
describe 'routing' do
it 'routes to #show' do
expect(get: '/registrant/domain_update_confirms/1').to route_to('registrant/domain_update_confirms#show', id: '1')
end
end
end