aboutsummaryrefslogtreecommitdiffstats
path: root/feature-tests/format-test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'feature-tests/format-test.pl')
-rw-r--r--feature-tests/format-test.pl26
1 files changed, 26 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) = @_;
+}