diff options
author | Azul <azul@riseup.net> | 2016-06-30 17:10:26 +0200 |
---|---|---|
committer | Azul <azul@riseup.net> | 2016-06-30 17:10:26 +0200 |
commit | 39697391452a1306e4aef3a5126bd2b9639b5936 (patch) | |
tree | 9e8516f9eb2e09bb7203011fdcd51f75e9ac281d /test/unit/adapters/celluloid_http_test.rb | |
parent | fe9a23419f9a875a98fc05dc22e2ad6c5f6dbe3b (diff) |
use proper ssl connection with ca_file - green!
Diffstat (limited to 'test/unit/adapters/celluloid_http_test.rb')
-rw-r--r-- | test/unit/adapters/celluloid_http_test.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/unit/adapters/celluloid_http_test.rb b/test/unit/adapters/celluloid_http_test.rb index c3c58b1..c9ea411 100644 --- a/test/unit/adapters/celluloid_http_test.rb +++ b/test/unit/adapters/celluloid_http_test.rb @@ -25,6 +25,15 @@ class Nickserver::Adapters::CelluloidHttpTest < Minitest::Test end end + def test_https_for_hkp + url = Nickserver::Config.hkp_url + real_network do + adapter.get url do |status, _body| + assert_equal 404, status + end + end + end + protected def adapter |