Help for this page
use strict; use warnings; ... is( f(), 32, 'f() returns 32' ); is( c(), 0, 'c() returns 0' );
my $temp = My::Temp::Thing->new(); $temp->set_c(0); is( $temp->get_f(), 32, '0 c is 32 f' );