make the test style match the rest of the (modern) Moose tests
[gitmo/Moose.git] / t / 070_attribute_helpers / 020_remove_attribute.t
CommitLineData
e3c07b19 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
6use Test::More tests => 12;
7use Test::Exception;
8
9BEGIN {
10 use_ok('Moose::AttributeHelpers');
11}
12
13{
14 package MyHomePage;
15 use Moose;
16
17 has 'counter' => (
d50fc84a 18 traits => ['Counter'],
19 is => 'ro',
20 isa => 'Int',
21 default => 0,
22 handles => {
c13596ce 23 inc_counter => 'inc',
24 dec_counter => 'dec',
25 reset_counter => 'reset',
e3c07b19 26 }
27 );
28}
29
30my $page = MyHomePage->new();
d50fc84a 31isa_ok( $page, 'MyHomePage' );
e3c07b19 32
d50fc84a 33can_ok( $page, $_ ) for qw[
e3c07b19 34 counter
35 dec_counter
36 inc_counter
37 reset_counter
38];
39
40lives_ok {
d50fc84a 41 $page->meta->remove_attribute('counter');
42}
43'... removed the counter attribute okay';
e3c07b19 44
d50fc84a 45ok( !$page->meta->has_attribute('counter'),
46 '... no longer has the attribute' );
e3c07b19 47
d50fc84a 48ok( !$page->can($_), "... our class no longer has the $_ method" ) for qw[
e3c07b19 49 counter
50 dec_counter
51 inc_counter
52 reset_counter
53];