From 606b117f2c5246eafd5b2001fd211d79aba85447 Mon Sep 17 00:00:00 2001 From: franck cuny Date: Wed, 15 Sep 2010 16:14:40 +0200 Subject: update tests --- t/spore-request/exception.t | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 't/spore-request/exception.t') 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; -- cgit v1.2.3