From: Alexander Hartmaier Date: Thu, 18 Feb 2010 10:01:27 +0000 (+0100) Subject: Remove debugging code from tests X-Git-Tag: 2.002001~29 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Controller-DBIC-API.git;a=commitdiff_plain;h=dde946747a25b53c539c4ff1043c1f7601364d11 Remove debugging code from tests --- diff --git a/Changes b/Changes index cc04ea0..0652822 100644 --- a/Changes +++ b/Changes @@ -2,6 +2,9 @@ Revision history for Catalyst-Controller-DBIC-API: {{ $dist->version }} {{ $NEXT }} +- Fixed some typos and code cleanups +- Remove debugging code from tests + 2.001003 2010-02-12 19:01:56 America/Chicago - Fill out some coercions to allow more complex search criteria (like sort order) diff --git a/t/rest/list.t b/t/rest/list.t index c7683f8..205c330 100644 --- a/t/rest/list.t +++ b/t/rest/list.t @@ -59,7 +59,6 @@ my $producer_list_url = "$base/api/rest/producer"; } { - $DB::single = 1; my $uri = URI->new( $producer_list_url ); my $req = GET( $uri, 'Accept' => 'text/x-json' ); $mech->request($req); diff --git a/t/rpc/create.t b/t/rpc/create.t index 4e0913f..f49a5b6 100644 --- a/t/rpc/create.t +++ b/t/rpc/create.t @@ -60,7 +60,6 @@ my $producer_create_url = "$base/api/rpc/producer/create"; # test stash config handling { - $DB::single = 1; my $req = POST( $any_artist_create_url, { name => 'queen monkey' }, 'Accept' => 'text/json' );