Re: Wrong code example in /docs/general/testing/testing.html

2013-03-18 Thread Fred Moyer
Thanks for the spot, update committed. On Mon, Mar 18, 2013 at 9:51 AM, Torsten Förtsch wrote: > On 03/12/2013 02:59 AM, Martín Ferrari wrote: >> +$r->write("ok 1"); >> +$r->write("not ok 2"); > > I think it should read (missing \n): > > +$r->write("ok 1\n"); > +$r->write("not ok

Re: Wrong code example in /docs/general/testing/testing.html

2013-03-18 Thread Torsten Förtsch
On 03/12/2013 02:59 AM, Martín Ferrari wrote: > +$r->write("ok 1"); > +$r->write("not ok 2"); I think it should read (missing \n): +$r->write("ok 1\n"); +$r->write("not ok 2\n"); Torsten

Re: Wrong code example in /docs/general/testing/testing.html

2013-03-18 Thread Fred Moyer
Thanks, change applied r1457851. On Mon, Mar 11, 2013 at 6:59 PM, Martín Ferrari wrote: > Hi, > > I was trying to set up a test environment for a mod_perl module, and > -among many other problems I had with the docs, that I'll try to put > in other reports-, I've found some code that does not eve