1use strict; 2use warnings; 3 4use Test2::Tools::Tiny; 5 6ok(1, ""); 7 8tests foo => sub { 9 ok(1, "name"); 10 ok(1, ""); 11}; 12 13done_testing; 14