mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 17:59:47 +02:00
9 lines
221 B
Ruby
9 lines
221 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe Registrar::DomainsController do
|
|
describe 'routing' do
|
|
it 'routes to #index' do
|
|
expect(get: '/registrar/domains').to route_to('registrar/domains#index')
|
|
end
|
|
end
|
|
end
|