adding the user controller for futzing with login bits

This commit is contained in:
Dan Buch
2011-08-09 21:43:23 -04:00
parent 6f9519fce9
commit 7ca80880a8
9 changed files with 60 additions and 0 deletions

View File

@@ -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