From 2751f56cfd4dc049a16908821139320dd0a97472 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Harald=20J=C3=B6rg?= Date: Thu, 11 Apr 2019 13:32:29 +0200 Subject: [PATCH] Add "use Test::More" to the SYNOPSIS of Plack::Test --- lib/Plack/Test.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Plack/Test.pm b/lib/Plack/Test.pm index 11f9e6929..c63a11afd 100644 --- a/lib/Plack/Test.pm +++ b/lib/Plack/Test.pm @@ -50,6 +50,7 @@ Plack::Test - Test PSGI applications with various backends use Plack::Test; use HTTP::Request::Common; + use Test::More; # Simple OO interface my $app = sub { return [ 200, [], [ "Hello" ] ] };