]> git.decadent.org.uk Git - maypole.git/commitdiff
use Maypole::Constants;
authorSimon Cozens <simon@simon-cozens.org>
Fri, 30 Apr 2004 14:57:56 +0000 (14:57 +0000)
committerSimon Cozens <simon@simon-cozens.org>
Fri, 30 Apr 2004 14:57:56 +0000 (14:57 +0000)
git-svn-id: http://svn.maypole.perl.org/Maypole/trunk@140 48953598-375a-da11-a14b-00016c27c3ee

lib/Maypole/CLI.pm

index b40dc0f1d1b2f9db5a68878c7c6ec4538cddc71e..8b7107b7b164a33a421cff6963896fb98dacc35f 100644 (file)
@@ -83,16 +83,17 @@ For instance, a test script could look like this:
 
     use Test::More tests => 5;
     use Maypole::CLI qw(BeerDB);
+    use Maypole::Constants;
     $ENV{MAYPOLE_TEMPLATES} = "t/templates";
 
     # Hack because isa_ok only supports object isa not class isa
     isa_ok( (bless {},"BeerDB") , "Maypole");
 
     @ARGV = ("http://localhost/beerdb/");
-    is(BeerDB->handler, 200, "OK");
+    is(BeerDB->handler, OK, "OK");
     like($Maypole::CLI::buffer, qr/frontpage/, "Got the front page");
 
     @ARGV = ("http://localhost/beerdb/beer/list");
-    is(BeerDB->handler, 200, "OK");
+    is(BeerDB->handler, OK, "OK");
     like($Maypole::CLI::buffer, qr/Organic Best/, "Found a beer in the list");