Merge pull request #258 from internetee/registry-186

Registry 186
This commit is contained in:
Timo Võhmar 2016-11-25 15:31:58 +02:00 committed by GitHub
commit a748b30c41
144 changed files with 2950 additions and 954 deletions

View file

@ -0,0 +1,9 @@
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

View file

@ -0,0 +1,9 @@
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