The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;
use utf8;
use Test::More tests => 1;
use Test::Requires {'Test::More' => 0.96};
use App::Prove;

TODO: {
    local $TODO = 'subtest is not supported yet';
    my $prove = App::Prove->new();
    $prove->process_args('--norc', '-Ilib', 't/nest/subtest.ttt');
    ok(!$prove->run(), 'this test should fail');
};