diff options
author | Tom Feist <shabble@metavore.org> | 2011-03-04 05:19:41 +0000 |
---|---|---|
committer | Tom Feist <shabble@metavore.org> | 2011-03-04 05:19:41 +0000 |
commit | 41c95c731cae9d39468acce966ed3e14e39191cf (patch) | |
tree | eef5ed6865c7d2cd6b4a79143c010570d754868b /testing/tests/002-cursor-test.t | |
parent | working with TAP::Harness (diff) | |
download | irssi-scripts-41c95c731cae9d39468acce966ed3e14e39191cf.tar.gz irssi-scripts-41c95c731cae9d39468acce966ed3e14e39191cf.zip |
testing: mostly working TAP output, test.pl uses TAP::Harness to run tests. now
we just need some tests.
Diffstat (limited to 'testing/tests/002-cursor-test.t')
-rwxr-xr-x | testing/tests/002-cursor-test.t | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/testing/tests/002-cursor-test.t b/testing/tests/002-cursor-test.t new file mode 100755 index 0000000..eb35170 --- /dev/null +++ b/testing/tests/002-cursor-test.t @@ -0,0 +1,29 @@ +#!/usr/bin/env perl + +use strict; +use warnings; + +use feature qw/say/; +use Test::Irssi; + +my $tester = Test::Irssi->new + (irssi_binary => "/opt/stow/repo/irssi-debug/bin/irssi", + irssi_homedir => $ENV{HOME} . "/projects/tmp/test/irssi-debug"); + +if (exists $ENV{IRSSI_TEST_HEADLESS} and $ENV{IRSSI_TEST_NOHEADLESS} == 1) { + $tester->run_headless(0); + $tester->generate_tap(0); +} else { + $tester->run_headless(1); + $tester->generate_tap(1); +} + +my $test = $tester->new_test('test1'); +$test->description("simple echo tests"); +$test->add_diag("Testing 123"); + +my $quit = $tester->new_test('quit'); +$quit->description('quitting'); +$quit->add_input_sequence("/quit\n"); + +$tester->run; |