For example, if it's needed to use __DATA__ and __DATA2__ ,
just include this module as below.
use Inline::Files
Mainly on Personal Genome Industry, Preventable Medicine, Mobile healthcare tech, and Bioinformatics.
use Inline::Files
use Test::Simple tests=>1; # indicate how many tests in the code
$expect=1;
$result=1;
ok ( $expect eq $result, 'Test1');
use Test::More qw(no_plan); # Possible not to determine how many tests
$expect=1;
$result=1;
ok ( $expect eq $result, 'Test1')
or is ( $expect eq $result, 'Test1');
TODO: {
ok(foo(),'Todo1");
ok(foo() ,1, "Todo2");
}
sub foo {
return 1;
}