summaryrefslogblamecommitdiff
path: root/xt/tests/Test/MooseX/MethodPrivate.pm
blob: cb8dc4c68598e76267715666cef92b6e9b70831c (plain) (tree)
























                                     
package Test::MooseX::MethodPrivate;

use strict;
use warnings;
use base 'Test::Class';
use Test::Exception;
use Test::More;

sub class { 'MooseX::MethodPrivate' }

sub startup : Tests(startup => 1) {
    my $test = shift;
    use_ok $test->class, "use ok";
}

sub shutdown : Tests(shutdown) {
    my $test = shift;
}

sub constructor : Tests(1) {
    my $test = shift;
    can_ok $test->class, 'new';
}

1;