From 36ea288cc78dedaadd1d3b38331489646be26626 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Tue, 14 Jun 2011 16:04:36 -0500 Subject: remove test numbers --- t/constructor-name.t | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 t/constructor-name.t (limited to 't/constructor-name.t') diff --git a/t/constructor-name.t b/t/constructor-name.t new file mode 100644 index 0000000..5ae1258 --- /dev/null +++ b/t/constructor-name.t @@ -0,0 +1,30 @@ +#!/usr/bin/env perl +use strict; +use warnings; +use Test::More; +use Test::Moose; + +{ + package Bar; + + sub create { bless {}, shift } +} + +{ + package Foo; + use Moose; + use Bread::Board::Declare; + + has bar => ( + is => 'ro', + isa => 'Bar', + constructor_name => 'create', + ); +} + +with_immutable { + my $foo = Foo->new; + isa_ok($foo->bar, 'Bar'); +} 'Foo'; + +done_testing; -- cgit v1.2.3-54-g00ecf