use t::TestModuleCompile tests => 3; my $pmc; BEGIN { $pmc = 't/lib/DataTest.pmc'; ok((-e $pmc), ".pmc exists"); } use DataTest; ok((-e $pmc), ".pmc still exists"); local $/; my $data = ; is $data, "\none\ntwo\n\nthree\n\n", "DATA section is correct";