adding the user controller for futzing with login bits
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
require 'test_helper'
|
||||
|
||||
class UserControllerTest < ActionController::TestCase
|
||||
test "should get login" do
|
||||
get :login
|
||||
assert_response :success
|
||||
end
|
||||
|
||||
test "should get process_login" do
|
||||
get :process_login
|
||||
assert_response :success
|
||||
end
|
||||
|
||||
test "should get logout" do
|
||||
get :logout
|
||||
assert_response :success
|
||||
end
|
||||
|
||||
test "should get my_account" do
|
||||
get :my_account
|
||||
assert_response :success
|
||||
end
|
||||
|
||||
end
|
Reference in New Issue
Block a user