On Monday 19 September 2005 12:59 pm, Geoffrey Young wrote:
> > t/response/Something/00foo.pm
> >
> > requires the NNfoo.pm to be lower case.
> > 00foo.pm works
> > 00Foo.pm does not.
> yeah, IIRC I mention in those slides somewhere that the t/response
> voodoo is case sensitive.
You d
Philip M. Gollucci wrote:
Malcolm J Harwood wrote:
http://people.apache.org/~geoff/Apache-Test-skeleton-mp2.tar.gz
THIS PACKAGE IS FOR mod_perl 2.0 (1.99_XX) ONLY!
a mod_perl 1.0 package is available from
http://perl.apache.org/~geoff/
You may want to update that slightly as I think RC5
missing piece:
t/response/Something/00foo.pm
requires the NNfoo.pm to be lower case.
00foo.pm works
00Foo.pm does not.
yeah, IIRC I mention in those slides somewhere that the t/response
voodoo is case sensitive. I know I try to remember to emphasize that
when I talk about it...
Malcolm J Harwood wrote:
http://people.apache.org/~geoff/Apache-Test-skeleton-mp2.tar.gz
THIS PACKAGE IS FOR mod_perl 2.0 (1.99_XX) ONLY!
a mod_perl 1.0 package is available from
http://perl.apache.org/~geoff/
You may want to update that slightly as I think RC5 was the only 1.99_XX (22)
rele
On Monday 19 September 2005 07:39 am, Geoffrey Young wrote:
> > however "make test" (or "t/TEST") fails because it can't find
> > TestStartup/00startup.pm as it's only got "t/" in the path, not
> > "t/response".
> >
> > What did I miss?
>
> are you using TestRunPerl in your Makefile.PL?
Yes.
> t
> however "make test" (or "t/TEST") fails because it can't find
> TestStartup/00startup.pm as it's only got "t/" in the path, not "t/response".
>
> What did I miss?
are you using TestRunPerl in your Makefile.PL?
try starting with this skeleton
http://people.apache.org/~geoff/Apache-Test-ske
On Sunday 18 September 2005 10:11 pm, Geoffrey Young wrote:
> the only thing that jumps out at me is that t/00Startup.t is being executed
> in perl-space outside of the apache server. that is, 'make test' is doing
> the same thing as if you ran
>
> $ perl t/00Startup.t
>
> which probably isn't
> t/00StartupCan't locate object method "server" via package
> "Apache2::ServerUtil" at t/00Startup.t line 8.
> where my test script is reduced to:
>
> use Apache::Test;
>
> plan tests => 1;
>
> use Apache2::ServerUtil ();
> ok( Apache2::ServerUtil->server );
>
>
>
> If there isn't so
I'm finally learning my way around Apache::Test and I'm having a problem.
Everything seems to be set up correctly (at least as far as I can determine).
When
running the actual code on my installed server, everything is happy. My initial
tests
fail though as follows:
make test results in:
se