diff options
author | Azul <azul@leap.se> | 2012-10-11 11:45:16 +0200 |
---|---|---|
committer | Azul <azul@leap.se> | 2012-10-11 11:45:16 +0200 |
commit | bde15d4ec416c1c6c99c7ea8bad9d8ed5aca128d (patch) | |
tree | 9e1a580fbbbc1e2533c1be20d9177a251353884f /certs/test/unit | |
parent | 9416bd9b8829f57fa54d50e8b3f53f614a1b29b5 (diff) |
fixed cert tests - adding test data and not testing the inline cert download filename
Diffstat (limited to 'certs/test/unit')
-rw-r--r-- | certs/test/unit/cert_test.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/certs/test/unit/cert_test.rb b/certs/test/unit/cert_test.rb index 21ef169..9362da2 100644 --- a/certs/test/unit/cert_test.rb +++ b/certs/test/unit/cert_test.rb @@ -17,8 +17,9 @@ class CertTest < ActiveSupport::TestCase end test "cert.zipped returns the actual data" do - @sample.save # This is required! + @sample.save # This is required ! assert lines = @sample.zipped.split("\n") + assert_equal 56, lines.count assert_equal "-----BEGIN RSA PRIVATE KEY-----", lines.first.chomp assert_equal "-----END CERTIFICATE-----", lines.last.chomp end |