summaryrefslogtreecommitdiffstats
path: root/t/20-BUILD.t
diff options
context:
space:
mode:
Diffstat (limited to 't/20-BUILD.t')
-rw-r--r--t/20-BUILD.t56
1 files changed, 56 insertions, 0 deletions
diff --git a/t/20-BUILD.t b/t/20-BUILD.t
new file mode 100644
index 0000000..81de930
--- /dev/null
+++ b/t/20-BUILD.t
@@ -0,0 +1,56 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use Test::More tests => 5;
+
+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');