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

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

my $ev = new_ok('Bot::Cobalt::IRC::Event::Channel' =>
  [ context => 'Main', src => 'yomomma!your@mother.org',
    channel => '#snacks' ]
);

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

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( $ev->channel eq '#snacks', 'channel()' );