summary refs log tree commit diff
path: root/t/01_basic.t
diff options
context:
space:
mode:
Diffstat (limited to 't/01_basic.t')
-rw-r--r--t/01_basic.t3
1 files changed, 3 insertions, 0 deletions
diff --git a/t/01_basic.t b/t/01_basic.t
index 92f5d03..e52f0e1 100644
--- a/t/01_basic.t
+++ b/t/01_basic.t
@@ -25,6 +25,9 @@ is $users->{status}, 1, "... get users";
 ok my $user = $obj->get_user( id => 1 ), "... fetch user";
 is $user->{status}, 1, "... get bruce wayne";
 
+ok my ($user, $http_response) = $obj->get_user(id => 1), "... fetch user";
+isa_ok $http_response, "HTTP::Response", "... got the HTTP response object";
+
 #dies_ok { $obj->get_user( id => 12 ) } "... can't fetch unknown user";
 #my $err = $@;
 #is $err->http_code, 404, "... get 404";