summaryrefslogtreecommitdiffstats
path: root/t/extending/method.t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2010-07-19 19:21:54 -0500
committerJesse Luehrs <doy@tozt.net>2010-07-19 19:21:54 -0500
commitd1bab5d4a5ea4100803c871461c62744767c514b (patch)
tree1e596286d921bdd58e2bc61eef5aff1c91a70e1b /t/extending/method.t
parent636f22f307ff0dc94a2c2ec23d49c872ecddbc02 (diff)
downloadmoosex-exporter-easy-master.tar.gz
moosex-exporter-easy-master.zip
a few more testsHEADmaster
Diffstat (limited to 't/extending/method.t')
-rwxr-xr-xt/extending/method.t21
1 files changed, 21 insertions, 0 deletions
diff --git a/t/extending/method.t b/t/extending/method.t
new file mode 100755
index 0000000..8599720
--- /dev/null
+++ b/t/extending/method.t
@@ -0,0 +1,21 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use Test::More;
+use Test::Output;
+use lib 't/lib';
+
+{
+ package Foo;
+ use Moose;
+ use AtomicMethod;
+
+ atomic_method foo => sub {
+ warn "in foo\n";
+ };
+}
+
+my $foo = Foo->new;
+stderr_is(sub { $foo->foo }, "locking...\nin foo\nunlocking...\n");
+
+done_testing;