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

package Unit::Test::App::PM::Website::Command::Install;

use base 'Test::Class';
use Test::More;

sub load_test : Test(1)
{
    use_ok( 'App::PM::Website::Command::Install' );
}


1;