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/40-mop.t | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 t/40-mop.t (limited to 't/40-mop.t') diff --git a/t/40-mop.t b/t/40-mop.t deleted file mode 100644 index c3a943f..0000000 --- a/t/40-mop.t +++ /dev/null @@ -1,39 +0,0 @@ -#!/usr/bin/env perl -use strict; -use warnings; -use Test::More; -use Test::Moose; - -{ - package Foo; - use Moose; - use Bread::Board::Declare; - - has foo => ( - is => 'ro', - isa => 'Str', - value => 'FOO', - ); - - has bar => ( - is => 'ro', - isa => 'Str', - block => sub { - my $s = shift; - return $s->param('foo') . 'BAR'; - }, - dependencies => ['foo'], - ); -} - -with_immutable { - my $foo = Foo->new; - my $foo_attr = $foo->meta->get_attribute('foo'); - my $bar_attr = $foo->meta->get_attribute('bar'); - is($foo_attr->get_value($foo), 'FOO', "right value"); - is($bar_attr->get_value($foo), 'FOOBAR', "right value"); - ok(!$foo_attr->has_value($foo), "no value"); - ok(!$bar_attr->has_value($foo), "no value"); -} 'Foo'; - -done_testing; -- cgit v1.2.3-54-g00ecf