diff options
Diffstat (limited to 'test/remote/celluloid_http_test.rb')
-rw-r--r-- | test/remote/celluloid_http_test.rb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/test/remote/celluloid_http_test.rb b/test/remote/celluloid_http_test.rb new file mode 100644 index 0000000..46a5259 --- /dev/null +++ b/test/remote/celluloid_http_test.rb @@ -0,0 +1,27 @@ +require 'test_helper' +require 'nickserver/adapters/celluloid_http' + +class Nickserver::Adapters::CelluloidHttpTest < Minitest::Test + + def setup + super + Celluloid.boot + end + + def teardown + Celluloid.shutdown + super + end + + def test_https_for_hkp + url = Nickserver::Config.hkp_url + status, _body = adapter.get url + assert_equal 404, status + end + + protected + + def adapter + @adapter ||= Nickserver::Adapters::CelluloidHttp.new + end +end |