The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

class TestCase::FILE {
static method file_name : int () {
my $file_name = __FILE__;
unless ($file_name eq "TestCase/FILE.spvm") {
return 0;
}
return 1;
}
}