The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
use strict;
use warnings;
use Bio::Tools::Alignment::Overview;
use Test::More tests => 3;                      # last test to print

ok( my $view = Bio::Tools::Alignment::Overview->new(), "instantiation" );

isa_ok( $view, 'Bio::Tools::Alignment::Overview' );

can_ok( $view, qw(input output color make_image) );