summaryrefslogtreecommitdiff
path: root/users/test/functional/helper_methods_test.rb
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2012-10-24 20:35:52 +0200
committerAzul <azul@leap.se>2012-10-24 20:35:52 +0200
commit3e0a1a47c0eafb7f9b79e5f2765ea33ce1ad159b (patch)
tree8c69443d15f23b391cdb282f9194d293307c98e4 /users/test/functional/helper_methods_test.rb
parent3ba2e664a26e96a93c8640b57241af6386db361e (diff)
basic admin controller methods and helpers + tests
Diffstat (limited to 'users/test/functional/helper_methods_test.rb')
-rw-r--r--users/test/functional/helper_methods_test.rb48
1 files changed, 48 insertions, 0 deletions
diff --git a/users/test/functional/helper_methods_test.rb b/users/test/functional/helper_methods_test.rb
new file mode 100644
index 0000000..0d76f63
--- /dev/null
+++ b/users/test/functional/helper_methods_test.rb
@@ -0,0 +1,48 @@
+#
+# Testing and documenting the helper methods available from
+# ApplicationController
+#
+
+require 'test_helper'
+
+class HelperMethodsTest < ActionController::TestCase
+ tests ApplicationController
+
+ # we test them right in here...
+ include ApplicationController._helpers
+
+ # they all reference the controller.
+ def controller
+ @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)
+ 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)
+ assert logged_in?
+ end
+
+ def test_logged_in
+ User.expects(:find).once.with(@user_id).returns(nil)
+ assert !logged_in?
+ end
+
+ def test_admin
+ bool = stub
+ User.expects(:find).once.with(@user_id).returns(@user)
+ @user.expects(:is_admin?).returns(bool)
+ assert_equal bool, admin?
+ end
+
+end