The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
use strict;
use warnings;
use lib 't/lib';

# To Do Var - ensure that Test::More's $TODO variable is exported

use MyTest::Basic;

ok(1, "ok() exists");

TODO: {
    local $TODO = "this test is to do";
    is 1, 2, "in the future one should equal 2 or something";
}

done_testing();