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

9 lines
276 B
Ruby

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