Controller users and user_sessions added
This commit is contained in:
parent
0d10c8ef0a
commit
83259aab54
17 changed files with 179 additions and 0 deletions
7
test/controllers/user_sessions_controller_test.rb
Normal file
7
test/controllers/user_sessions_controller_test.rb
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
require "test_helper"
|
||||
|
||||
class UserSessionsControllerTest < ActionController::TestCase
|
||||
def test_sanity
|
||||
flunk "Need real tests"
|
||||
end
|
||||
end
|
||||
7
test/controllers/users_controller_test.rb
Normal file
7
test/controllers/users_controller_test.rb
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
require "test_helper"
|
||||
|
||||
class UsersControllerTest < ActionController::TestCase
|
||||
def test_sanity
|
||||
flunk "Need real tests"
|
||||
end
|
||||
end
|
||||
7
test/helpers/user_sessions_helper_test.rb
Normal file
7
test/helpers/user_sessions_helper_test.rb
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
require "test_helper"
|
||||
|
||||
class UserSessionsHelperTest < ActionView::TestCase
|
||||
def test_sanity
|
||||
flunk "Need real tests"
|
||||
end
|
||||
end
|
||||
7
test/helpers/users_helper_test.rb
Normal file
7
test/helpers/users_helper_test.rb
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
require "test_helper"
|
||||
|
||||
class UsersHelperTest < ActionView::TestCase
|
||||
def test_sanity
|
||||
flunk "Need real tests"
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue