summaryrefslogtreecommitdiffstats
path: root/t/extending/class.t
diff options
context:
space:
mode:
Diffstat (limited to 't/extending/class.t')
-rwxr-xr-xt/extending/class.t24
1 files changed, 24 insertions, 0 deletions
diff --git a/t/extending/class.t b/t/extending/class.t
new file mode 100755
index 0000000..194cf4c
--- /dev/null
+++ b/t/extending/class.t
@@ -0,0 +1,24 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use Test::More;
+use lib 't/lib';
+
+{
+ package Foo;
+ use Moose;
+ use Command;
+
+ sub foo {
+ }
+
+ command bar => sub {
+ };
+}
+
+ok(Foo->meta->has_method('bar'));
+is_deeply([Foo->meta->get_all_commands], [Foo->meta->get_method('bar')]);
+ok(Foo->meta->has_command('bar'));
+ok(!Foo->meta->has_command('foo'));
+
+done_testing;