The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use Test::More tests => 11;
use strict; use warnings;

BEGIN{
  use_ok('Bot::Cobalt::IRC::Event::Mode');
}

my $ev = new_ok('Bot::Cobalt::IRC::Event::Mode' =>
  [ context => 'Main', src => 'yomomma!your@mother.org',
    target => '#snacks', 
    mode   => '+tk', args => ['key'] ]
);

isa_ok($ev, 'Bot::Cobalt::IRC::Event' );

is( $ev->mode, '+tk', 'mode()' );

ok( $ev->context eq 'Main', 'context()' );

ok( $ev->src eq 'yomomma!your@mother.org', 'src()' );

ok( $ev->src_nick eq 'yomomma', 'src_nick()' );
ok( $ev->src_user eq 'your', 'src_user()' );
ok( $ev->src_host eq 'mother.org', 'src_host()' );

ok( ref $ev->hash eq 'HASH', 'hash()' );

is_deeply( $ev->args, ['key'], 'args()' );