* 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');
>
>Incrementing numbers and substituting words and letters takes
>time because of the varying positions in the line of the
>different things I'm cutting and pasting.
>
>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';

Not everything needs code to be solved. Maybe you need a better
editor?

Regards,
-- 
Aristotle Pagaltzis // <http://plasmasturm.org/>

Reply via email to