On Tue, 14 Mar 2006, A. Pagaltzis wrote:

> * Dr Bean <[EMAIL PROTECTED]> [2006-03-14 02:40]:
> >is($o->index('You'), 1, 'objects index 1');
> >isnt($o->index(1), 1, 'objects index 2');
> >isnt($o->index(2), 2, 'objects index 2');
> >is($o->index($t), 3, 'objects index 3');

> >I need a more configurable format.

> How about you line them up?

>     is   $o->index('You'), 1, 'objects index 1';
>     isnt $o->index(    1), 1, 'objects index 2';
>     isnt $o->index(    2), 2, 'objects index 2';
>     is   $o->index(   $t), 3, 'objects index 3';

Well that's certainly an improvement on what I'm doing at the
moment, and I will start working with tabbing, but I would like
to separate the data (ie what I want to test) from the actions on
the data even more, putting it in a data section, so I could yank
lines and paragraphs rather than, or as well as, letters and
words.

-- 
Dr Bean                      None of the language can be explained well
                             until most of it has already been understood.
                             --Norman Cohen

Reply via email to