mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 01:47:18 +02:00
18 lines
455 B
Ruby
18 lines
455 B
Ruby
require 'rails_helper'
|
|
|
|
feature 'Root', type: :feature do
|
|
it 'should redirect to registrant login page' do
|
|
visit '/registrant/login'
|
|
current_path.should == '/registrant/login'
|
|
end
|
|
|
|
it 'should redirect to registrant login page' do
|
|
visit '/registrant'
|
|
current_path.should == '/registrant/login'
|
|
end
|
|
|
|
it 'should redirect to registrant login page' do
|
|
visit '/registrant/'
|
|
current_path.should == '/registrant/login'
|
|
end
|
|
end
|