The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/env perl
use strict;
use warnings;
use Crypt::Random::Seed;

my @methods = (qw/name is_blocking is_strong random_bytes random_values/);

use Test::More  tests => 1;

my $source = Crypt::Random::Seed->new;

can_ok($source, @methods);