diff options
author | Tom Feist <shabble@metavore.org> | 2010-11-08 19:58:30 +0000 |
---|---|---|
committer | Tom Feist <shabble@metavore.org> | 2010-11-08 19:58:30 +0000 |
commit | e52e175256d2fcfaa4d0852746c948b4d04a78c7 (patch) | |
tree | e22affcf96d9dd2057624d762e98626c0e93a3cd | |
parent | initial work on tab completion for ex commands. Partially working (diff) | |
download | irssi-scripts-e52e175256d2fcfaa4d0852746c948b4d04a78c7.tar.gz irssi-scripts-e52e175256d2fcfaa4d0852746c948b4d04a78c7.zip |
added testing/ for code to run automated tests against irssitab-complete
-rwxr-xr-x | testing/vt.pl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/testing/vt.pl b/testing/vt.pl new file mode 100755 index 0000000..e67b599 --- /dev/null +++ b/testing/vt.pl @@ -0,0 +1,9 @@ +#!/usr/bin/env perl + +use strict; +use warnings; + +use Term::VT102; + +my $term = Term::VT102->new(cols => 80, rows => 24); + |