File: 01_compile.t

package info (click to toggle)
libpoe-component-irc-perl 6.93%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, trixie
  • size: 1,532 kB
  • sloc: perl: 16,219; makefile: 5
file content (35 lines) | stat: -rw-r--r-- 1,084 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
use strict;
use warnings FATAL => 'all';
use Test::More;

my @modules = qw(
    POE::Filter::IRC
    POE::Filter::IRC::Compat
    POE::Component::IRC
    POE::Component::IRC::State
    POE::Component::IRC::Qnet
    POE::Component::IRC::Qnet::State
    POE::Component::IRC::Constants
    POE::Component::IRC::Common
    POE::Component::IRC::Plugin
    POE::Component::IRC::Plugin::Whois
    POE::Component::IRC::Plugin::Proxy
    POE::Component::IRC::Plugin::PlugMan
    POE::Component::IRC::Plugin::NickServID
    POE::Component::IRC::Plugin::NickReclaim
    POE::Component::IRC::Plugin::Logger
    POE::Component::IRC::Plugin::ISupport
    POE::Component::IRC::Plugin::FollowTail
    POE::Component::IRC::Plugin::Console
    POE::Component::IRC::Plugin::Connector
    POE::Component::IRC::Plugin::CTCP
    POE::Component::IRC::Plugin::CycleEmpty
    POE::Component::IRC::Plugin::BotTraffic
    POE::Component::IRC::Plugin::BotAddressed
    POE::Component::IRC::Plugin::AutoJoin
    POE::Component::IRC::Plugin::BotCommand
);

plan tests => scalar @modules;
use_ok($_) for @modules;