Removed "authlogic" completely. Let's try "devise".

This commit is contained in:
Christoph Haas 2015-07-15 17:05:56 +02:00
parent 4b4cbf4b88
commit e6a0f15340
26 changed files with 10 additions and 260 deletions

View file

@ -1,7 +0,0 @@
require "test_helper"
class UserSessionsControllerTest < ActionController::TestCase
def test_sanity
flunk "Need real tests"
end
end

View file

@ -1,7 +0,0 @@
require "test_helper"
class UsersControllerTest < ActionController::TestCase
def test_sanity
flunk "Need real tests"
end
end

View file

@ -1,7 +0,0 @@
require "test_helper"
class UserSessionsHelperTest < ActionView::TestCase
def test_sanity
flunk "Need real tests"
end
end

View file

@ -1,7 +0,0 @@
require "test_helper"
class UsersHelperTest < ActionView::TestCase
def test_sanity
flunk "Need real tests"
end
end

View file

@ -1,7 +1,6 @@
require "test_helper"
class UserTest < ActiveSupport::TestCase
def user
@user ||= User.new
end
@ -9,5 +8,4 @@ class UserTest < ActiveSupport::TestCase
def test_valid
assert user.valid?
end
end