summaryrefslogtreecommitdiff
path: root/users/test/functional/helper_methods_test.rb
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2012-10-24 20:41:30 +0200
committerAzul <azul@leap.se>2012-10-24 20:48:45 +0200
commitb724d53b36878c96d30676c22ee4e4369dcc37f8 (patch)
tree6bc4e0f7ce5732664875d4030d32a9aec98417f0 /users/test/functional/helper_methods_test.rb
parent3e0a1a47c0eafb7f9b79e5f2765ea33ce1ad159b (diff)
Extraction of test support methods
Diffstat (limited to 'users/test/functional/helper_methods_test.rb')
-rw-r--r--users/test/functional/helper_methods_test.rb16
1 files changed, 5 insertions, 11 deletions
diff --git a/users/test/functional/helper_methods_test.rb b/users/test/functional/helper_methods_test.rb
index 0d76f63..c0eaf61 100644
--- a/users/test/functional/helper_methods_test.rb
+++ b/users/test/functional/helper_methods_test.rb
@@ -16,31 +16,25 @@ class HelperMethodsTest < ActionController::TestCase
@controller
end
- def setup
- @user_id = stub
- @user = stub
- session[:user_id] = @user_id
- end
-
def test_current_user_with_caching
- User.expects(:find).once.with(@user_id).returns(@user)
+ @user = stub_logged_in
assert_equal @user, current_user
assert_equal @user, current_user # tests caching
end
def test_logged_in
- User.expects(:find).once.with(@user_id).returns(@user)
+ @user = stub_logged_in
assert logged_in?
end
- def test_logged_in
- User.expects(:find).once.with(@user_id).returns(nil)
+ def test_logged_out
+ stub_logged_out
assert !logged_in?
end
def test_admin
bool = stub
- User.expects(:find).once.with(@user_id).returns(@user)
+ @user = stub_logged_in
@user.expects(:is_admin?).returns(bool)
assert_equal bool, admin?
end