summaryrefslogtreecommitdiffstats
path: root/t/BUILD.t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-09-04 19:38:21 -0400
committerJesse Luehrs <doy@tozt.net>2013-09-04 19:47:11 -0400
commit8bf5e6931a1bd96df0cdb1ceb94bbb3e578a8126 (patch)
tree2e659a8f07ea1cca3091a9c0578bbd8e53c20c11 /t/BUILD.t
parent8e0b4f219f2d8d94cb6937ef47168ac5fac03cd9 (diff)
downloadmoosex-nonmoose-8bf5e6931a1bd96df0cdb1ceb94bbb3e578a8126.tar.gz
moosex-nonmoose-8bf5e6931a1bd96df0cdb1ceb94bbb3e578a8126.zip
packaging
Diffstat (limited to 't/BUILD.t')
-rw-r--r--t/BUILD.t58
1 files changed, 58 insertions, 0 deletions
diff --git a/t/BUILD.t b/t/BUILD.t
new file mode 100644
index 0000000..d5cc68f
--- /dev/null
+++ b/t/BUILD.t
@@ -0,0 +1,58 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use Test::More;
+
+package Foo;
+
+sub new {
+ my $class = shift;
+ bless { foo => 'FOO' }, $class;
+}
+
+package Foo::Moose;
+use Moose;
+use MooseX::NonMoose;
+extends 'Foo';
+
+has class => (
+ is => 'rw',
+);
+
+has accum => (
+ is => 'rw',
+ isa => 'Str',
+ default => '',
+);
+
+sub BUILD {
+ my $self = shift;
+ $self->class(ref $self);
+ $self->accum($self->accum . 'a');
+}
+
+package Foo::Moose::Sub;
+use Moose;
+extends 'Foo::Moose';
+
+has bar => (
+ is => 'rw',
+);
+
+sub BUILD {
+ my $self = shift;
+ $self->bar('BAR');
+ $self->accum($self->accum . 'b');
+}
+
+package main;
+my $foo_moose = Foo::Moose->new;
+is($foo_moose->class, 'Foo::Moose', 'BUILD method called properly');
+is($foo_moose->accum, 'a', 'BUILD method called properly');
+
+my $foo_moose_sub = Foo::Moose::Sub->new;
+is($foo_moose_sub->class, 'Foo::Moose::Sub', 'parent BUILD method called');
+is($foo_moose_sub->bar, 'BAR', 'child BUILD method called');
+is($foo_moose_sub->accum, 'ab', 'BUILD methods called in the correct order');
+
+done_testing;