Remove useless comments and add shebang to test
[poe-component-irc-plugin-hello.git] / t / POE-Component-IRC-Plugin-Hello.t
CommitLineData
b2f492fe 1#!/usr/bin/perl -w
29280d6c
MG
2use v5.14;
3use strict;
4use warnings;
5
6use Test::More tests => 15;
7use Test::MockObject;
8
9BEGIN { use_ok('POE::Component::IRC::Plugin::Hello') };
10
29280d6c
MG
11my $hello_sent;
12
13my $mockirc = Test::MockObject->new;
14$mockirc->mock(yield => sub { $hello_sent = 1 })->set_always(nick_name => 'hellobot');
15
16my $self = POE::Component::IRC::Plugin::Hello->new;
17my $channels = [ '#chan' ];
18
29280d6c 19sub runtest{
9e1acbcb
MG
20 my ($message, $expect, $comment) = @_;
21 $hello_sent=0;
22 $self->S_public($mockirc, \'mgv!marius@ieval.ro', \$channels, \$message);
23 ok($hello_sent == $expect, $comment)
29280d6c
MG
24}
25
29280d6c
MG
26runtest 'privet', 1, 'simple privet';
27runtest 'PrIvEt', 1, 'privet in mixed case';
28runtest ' privet ', 1, 'privet with spaces';
29runtest 'hellobot: privet', 1, 'addressed privet';
30runtest 'hellobot: privet ', 1, 'addressed privet with spaces';
31runtest 'ahoy', 1, 'ahoy';
32runtest 'namaste', 1, 'namaste';
33runtest 'neaţa', 1, 'neaţa (UTF-8 test)';
34runtest 'こんにちは', 1, 'こんにちは (another UTF-8 test)';
35
36runtest 'salu', 0, 'salu (misspelling)';
37runtest 'hii', 0, 'hii (misspelling)';
38runtest 'neaţa mgv', 0, 'neaţa mgv (valid greeting with garbage after it)';
39
40$self = POE::Component::IRC::Plugin::Hello->new(greetings => ['sayonara']);
41
42runtest 'privet', 0, 'custom greetings - privet';
43runtest ' sayonara ', 1, 'custom greetings - sayonara';
This page took 0.01123 seconds and 4 git commands to generate.