summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2013-02-06 16:41:58 +0100
committerAzul <azul@leap.se>2013-02-06 16:41:58 +0100
commitf1f33f7e041c9e831e27ca5084ce1dd8a35a7c45 (patch)
treeb63e83731066d7da948509c391bd0a3f1cfc30f3
parent1bf82535b25cb17c58a196fdaab639040f48e769 (diff)
we don't add srp stuff to user class anymore
warden srp strategy in lib has it all.
-rw-r--r--users/test/unit/user_test.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/users/test/unit/user_test.rb b/users/test/unit/user_test.rb
index 66563a3..10c8b46 100644
--- a/users/test/unit/user_test.rb
+++ b/users/test/unit/user_test.rb
@@ -40,13 +40,6 @@ class UserTest < ActiveSupport::TestCase
assert_equal @user.password_salt.hex, @user.salt
end
- test "should include SRP" do
- client_rnd = bigrand(32).hex
- srp_session = @user.initialize_auth(client_rnd)
- assert srp_session.is_a? SRP::Session
- assert_equal client_rnd, srp_session.aa
- end
-
test 'normal user is no admin' do
assert !@user.is_admin?
end