From 204046d2837f6537ea32d2e35c3c9f965936a0a4 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Thu, 9 Nov 2006 17:50:59 +0000 Subject: [PATCH] document object mocking --- t/Session/Http.t | 2 ++ 1 file changed, 2 insertions(+) diff --git a/t/Session/Http.t b/t/Session/Http.t index 288be156c..95b9bd823 100644 --- a/t/Session/Http.t +++ b/t/Session/Http.t @@ -32,6 +32,8 @@ my $http = $session->http; use Test::MockObject::Extends; +##This tests mocks http's getCookies so that it doesn't have to +##try and implement the mod_perl cookie handling code. $http = Test::MockObject::Extends->new($http); my $cookieName = $session->config->getCookieName; my $varId = $session->var->getId();