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