Remove register_implementation, warn about future deprecation
[gitmo/MooseX-AttributeHelpers.git] / t / 208_trait_bool.t
CommitLineData
f4b22618 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
6use Test::More tests => 8;
7use MooseX::AttributeHelpers;
8
9{
10 package Room;
11 use Moose;
12 has 'is_lit' => (
c1984b5c 13 traits => ['MooseX::AttributeHelpers::Trait::Bool'],
f4b22618 14 is => 'rw',
15 isa => 'Bool',
16 default => sub { 0 },
17 provides => {
18 set => 'illuminate',
19 unset => 'darken',
20 toggle => 'flip_switch',
21 not => 'is_dark'
22 }
23 )
24}
25
26my $room = Room->new;
27$room->illuminate;
28ok $room->is_lit, 'set is_lit to 1 using ->illuminate';
29ok !$room->is_dark, 'check if is_dark does the right thing';
30
31$room->darken;
32ok !$room->is_lit, 'set is_lit to 0 using ->darken';
33ok $room->is_dark, 'check if is_dark does the right thing';
34
35$room->flip_switch;
36ok $room->is_lit, 'toggle is_lit back to 1 using ->flip_switch';
37ok !$room->is_dark, 'check if is_dark does the right thing';
38
39$room->flip_switch;
40ok !$room->is_lit, 'toggle is_lit back to 0 again using ->flip_switch';
41ok $room->is_dark, 'check if is_dark does the right thing';
42