Controller users and user_sessions added

This commit is contained in:
Christoph Haas 2016-02-26 17:34:36 +01:00
parent 0d10c8ef0a
commit 83259aab54
17 changed files with 179 additions and 0 deletions

View file

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

View file

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

View file

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

View file

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