summary refs log tree commit diff
path: root/t/spore-request/exception.t
diff options
context:
space:
mode:
Diffstat (limited to 't/spore-request/exception.t')
-rw-r--r--t/spore-request/exception.t9
1 files changed, 8 insertions, 1 deletions
diff --git a/t/spore-request/exception.t b/t/spore-request/exception.t
index 162370a..5d5af38 100644
--- a/t/spore-request/exception.t
+++ b/t/spore-request/exception.t
@@ -4,11 +4,18 @@ use warnings;
 use Test::More;
 use Net::HTTP::Spore;
 
+my $mock_server = {
+    '/test_spore/_all_docs' => sub {
+        my $req = shift;
+        die;
+    },
+};
+
 ok my $client =
   Net::HTTP::Spore->new_from_spec( 't/specs/couchdb.json',
     api_base_url => 'http://localhost:5984' );
 
-$client->enable( 'Test::Response', callback => sub { die } );
+$client->enable( 'Mock', tests => $mock_server );
 
 my $res = $client->get_all_documents(database => 'test_spore');
 is $res->[0], 599;