From 1297ea571d444d38a1dafe6e21978516831cdcf6 Mon Sep 17 00:00:00 2001 From: Tom Feist Date: Fri, 5 Nov 2010 00:47:14 +0000 Subject: added some feature tests for format expansion --- feature-tests/format-test.pl | 26 ++++++++++++++++++++++++++ feature-tests/template.pl | 15 +++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 feature-tests/format-test.pl create mode 100644 feature-tests/template.pl (limited to 'feature-tests') diff --git a/feature-tests/format-test.pl b/feature-tests/format-test.pl new file mode 100644 index 0000000..d8be412 --- /dev/null +++ b/feature-tests/format-test.pl @@ -0,0 +1,26 @@ +use strict; +use warnings; + + +use Irssi; + + +our $VERSION = '0.1'; +our %IRSSI = ( + authors => '', + contact => '', + name => '', + description => '', + license => 'Public Domain', + ); + +init(); + +sub init { + Irssi::command_bind('ft', \&format_test); +} + + +sub format_test { + my ($args, $win, $server) = @_; +} diff --git a/feature-tests/template.pl b/feature-tests/template.pl new file mode 100644 index 0000000..2c75044 --- /dev/null +++ b/feature-tests/template.pl @@ -0,0 +1,15 @@ +use strict; +use warnings; + + +use Irssi; + + +our $VERSION = '0.1'; +our %IRSSI = ( + authors => '', + contact => '', + name => '', + description => '', + license => 'Public Domain', + ); -- cgit v1.2.3