diff options
Diffstat (limited to 'test/support')
-rw-r--r-- | test/support/celluloid_test.rb (renamed from test/support/client_integration_test.rb) | 3 | ||||
-rw-r--r-- | test/support/http_stub_helper.rb | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/test/support/client_integration_test.rb b/test/support/celluloid_test.rb index b05db73..ddcfcbb 100644 --- a/test/support/client_integration_test.rb +++ b/test/support/celluloid_test.rb @@ -1,8 +1,9 @@ -class ClientIntegrationTest +class CelluloidTest < Minitest::Test def setup super Celluloid.boot + Celluloid.logger = nil end def teardown diff --git a/test/support/http_stub_helper.rb b/test/support/http_stub_helper.rb index cb9b578..dd3d1b2 100644 --- a/test/support/http_stub_helper.rb +++ b/test/support/http_stub_helper.rb @@ -1,7 +1,9 @@ +require 'nickserver/source' + module HttpStubHelper def stubbing_http - Nickserver::Adapters::CelluloidHttp.stub :new, adapter do + Nickserver::Source::DEFAULT_ADAPTER_CLASS.stub :new, adapter do yield end adapter.verify |