OSDN Git Service

This commit was manufactured by cvs2svn to create tag 'tag20090103'.
[keitairc/keitairc.git] / t / 00_required_modules.t
1 # -*- mode: perl; coding: utf-8 -*-
2 # $Id: 00_required_modules.t,v 1.1 2008-08-02 18:35:54 morimoto Exp $
3 # $Source: /home/ishikawa/work/keitairc/tmp/keitairc/t/00_required_modules.t,v $
4 # Copyright (c) 2003-2008 Jun Morimoto <morimoto@mrmt.net>
5 # This program is covered by the GNU General Public License 2
6 use strict;
7 use warnings;
8 use Test::More tests => 9;
9 use FindBin;
10 use lib "$FindBin::Bin/../lib";
11
12 # check required modules
13 use_ok('AppConfig');
14 use_ok('Encode');
15 use_ok('POE');
16 use_ok('POE::Filter::HTTPD');
17 use_ok('POE::Component::IRC');
18 use_ok('POE::Component::Server::TCP');
19 use_ok('URI::Escape');
20 use_ok('HTML::Template');
21 use_ok('HTTP::Response');
22 exit;