The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use Test::Roo;

use lib 't/lib';

with 'EachTest';

sub _build_counter { return 0 }

before each_test => sub {
    my $self = shift;
    $self->counter( $self->counter + 1);
};

after each_test => sub {
    my $self = shift;
    $self->counter( $self->counter - 1);
};

test 'is two' => sub { is( shift->counter, 2, "counter is 2" ) };

test 'still two' => sub { is( shift->counter, 2, "counter is still two" ) };

run_me;
done_testing;