diff options
author | Tom Feist <shabble@metavore.org> | 2011-02-21 01:58:22 +0000 |
---|---|---|
committer | Tom Feist <shabble@metavore.org> | 2011-02-21 01:58:22 +0000 |
commit | 71c173db56f8e462fbaa8c0472788c04982478db (patch) | |
tree | cb47d04905cc897be7e3d90d39d0c971e7d5184d /testing/t/001-use.t | |
parent | modified gitignore to ignore compilation products from modules/ subdirs (diff) | |
download | irssi-scripts-71c173db56f8e462fbaa8c0472788c04982478db.tar.gz irssi-scripts-71c173db56f8e462fbaa8c0472788c04982478db.zip |
start of makign this a proper module
Diffstat (limited to 'testing/t/001-use.t')
-rwxr-xr-x | testing/t/001-use.t | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/testing/t/001-use.t b/testing/t/001-use.t new file mode 100755 index 0000000..60f1bb9 --- /dev/null +++ b/testing/t/001-use.t @@ -0,0 +1,25 @@ +#!/usr/bin/env perl + +use strict; +use warnings; + +use Test::More; +use Data::Dumper; + +BEGIN { + use_ok 'Test::Irssi'; +} + + +my $test = new_ok 'Test::Irssi'; +my @methods = qw/logfile terminal_height terminal_width irssi_homedir irssi_binary/; +can_ok($trie, @methodss); + +undef $test + +done_testing; + +__END__ + + + |