Searched defs:cmp_ok (Results 1 - 3 of 3) sorted by relevance

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/
H A Dtest.pl173 sub cmp_ok ($$$@) { subroutine
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Test/
H A DMore.pm25 cmp_ok
76 cmp_ok($this, '==', $that, $test_name);
391 =item B<cmp_ok>
393 cmp_ok( $this, $op, $that, $test_name );
395 Halfway between ok() and is() lies cmp_ok(). This allows you to
399 cmp_ok( $this, 'eq', $that, 'this eq that' );
402 cmp_ok( $this, '==', $that, 'this == that' );
405 cmp_ok( $this, '&&', $that, 'this || that' );
420 cmp_ok( $big_hairy_number, '==', $another_big_hairy_number );
424 sub cmp_ok( subroutine
[all...]
H A DBuilder.pm378 return $self->cmp_ok($got, 'eq', $expect, $name);
394 return $self->cmp_ok($got, '==', $expect, $name);
452 return $self->cmp_ok($got, 'ne', $dont_expect, $name);
468 return $self->cmp_ok($got, '!=', $dont_expect, $name);
579 =item B<cmp_ok>
581 $Test->cmp_ok($this, $type, $that, $name);
583 Works just like Test::More's cmp_ok().
585 $Test->cmp_ok($big_num, '!=', $other_big_num);
589 sub cmp_ok { subroutine

Completed in 24 milliseconds