projects
/
scpubgit/App-SCS.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
576f44e
)
skeleton PSGI response test
Matt S Trout [Tue, 31 Jul 2012 20:59:25 +0000 (20:59 +0000)]
t/02simple.t
patch
|
blob
|
blame
|
history
diff --git
a/t/02simple.t
b/t/02simple.t
index
8d57fcb
..
e0a8ec8
100644
(file)
--- a/
t/02simple.t
+++ b/
t/02simple.t
@@
-47,4
+47,9
@@
like(
'Page data interpolated'
);
+my $res = $simple1->_psgi_response;
+
+is(ref($res),'ARRAY','PSGI response');
+is($res->[0],200,'200 OK');
+
done_testing;