diff options
Diffstat (limited to 'testing/test.pl')
-rwxr-xr-x | testing/test.pl | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/testing/test.pl b/testing/test.pl new file mode 100755 index 0000000..b062160 --- /dev/null +++ b/testing/test.pl @@ -0,0 +1,18 @@ +#!/usr/bin/env perl + +use strict; +use warnings; + +use feature qw/say/; + +use lib 'blib/lib'; + +use Test::Irssi; + +my $test = Test::Irssi->new + (irssi_binary => "/opt/stow/repo/irssi-debug/bin/irssi", + irssi_homedir => $ENV{HOME} . "/projects/tmp/test/irssi-debug"); + +say "Created test instance"; + +$test->run; |