aboutsummaryrefslogtreecommitdiffstats
path: root/testing/t/001-use.t
diff options
context:
space:
mode:
Diffstat (limited to 'testing/t/001-use.t')
-rwxr-xr-xtesting/t/001-use.t25
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__
+
+
+