summary refs log tree commit diff
path: root/xt/tests/Test/MooseX/MethodPrivate.pm
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--xt/tests/Test/MooseX/MethodPrivate.pm25
1 files changed, 0 insertions, 25 deletions
diff --git a/xt/tests/Test/MooseX/MethodPrivate.pm b/xt/tests/Test/MooseX/MethodPrivate.pm
deleted file mode 100644
index cb8dc4c..0000000
--- a/xt/tests/Test/MooseX/MethodPrivate.pm
+++ /dev/null
@@ -1,25 +0,0 @@
-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;