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

use strict;
use warnings;

use base 'Test::Unit::TestCase';

sub test_success {
  my $self = shift;
  $self->assert(1);
}

1;