Remove routing specs

This commit is contained in:
Artur Beljajev 2018-06-19 20:24:52 +03:00
parent ebe831e782
commit bb39d0340e
3 changed files with 1 additions and 19 deletions

View file

@ -1,6 +1,6 @@
class User < ActiveRecord::Base
include Versions # version/user_version.rb
devise :trackable, :timeoutable
devise :database_authenticatable, :trackable, :timeoutable
attr_accessor :phone

View file

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

View file

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