diff options
Diffstat (limited to 'feature-tests')
-rw-r--r-- | feature-tests/format-test.pl | 26 | ||||
-rw-r--r-- | feature-tests/template.pl | 15 |
2 files changed, 41 insertions, 0 deletions
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', + ); |