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

use Test::More 'no_plan';

use_ok 'Benchmark::Stopwatch';

my $sw = Benchmark::Stopwatch->new;
isa_ok $sw, 'Benchmark::Stopwatch';

can_ok $sw, 'start';
can_ok $sw, 'lap';
can_ok $sw, 'stop';
can_ok $sw, 'summary';
can_ok $sw, 'time';