Test::More's is() function.
is( $got, $expected );
From
ok( $ical->day == 16, ' day()' );
To
is( $ical->day, 16, ' day()' );
Prev | toc | Next