summaryrefslogtreecommitdiff
path: root/certs/test/functional
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2013-01-26 11:13:24 +0100
committerAzul <azul@leap.se>2013-01-26 11:13:24 +0100
commit0f8efed9afa480174c77c89d4d9d4a40f99bddab (patch)
treed4a0731526a0e1174938f794277401c789e64395 /certs/test/functional
parent0975583e3c6ec9d2bf0269841073031537db1c37 (diff)
adopting tests to the way certs work now. should pass.
* We now generate cert and key on validate. * we don't expect the controller to pick from the pool anymore - just create instead
Diffstat (limited to 'certs/test/functional')
-rw-r--r--certs/test/functional/certs_controller_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/certs/test/functional/certs_controller_test.rb b/certs/test/functional/certs_controller_test.rb
index 3d6946e..887d5f0 100644
--- a/certs/test/functional/certs_controller_test.rb
+++ b/certs/test/functional/certs_controller_test.rb
@@ -13,7 +13,7 @@ class CertsControllerTest < ActionController::TestCase
test "should send cert" do
login
cert = stub :cert => "adsf", :key => "key"
- LeapCA::Cert.expects(:pick_from_pool).returns(cert)
+ ClientCertificate.expects(:create).returns(cert)
get :show
assert_response :success
assert_equal cert.key + cert.cert, @response.body