aboutsummaryrefslogtreecommitdiffstats
path: root/feature-tests/easy_exec.pl
diff options
context:
space:
mode:
Diffstat (limited to 'feature-tests/easy_exec.pl')
-rw-r--r--feature-tests/easy_exec.pl35
1 files changed, 35 insertions, 0 deletions
diff --git a/feature-tests/easy_exec.pl b/feature-tests/easy_exec.pl
new file mode 100644
index 0000000..dbcd101
--- /dev/null
+++ b/feature-tests/easy_exec.pl
@@ -0,0 +1,35 @@
+use strict;
+use warnings;
+
+# export everything.
+use Irssi (@Irssi::EXPORT_OK);
+use Irssi::Irc;
+use Irssi::TextUI;
+
+use Data::Dumper;
+
+our $VERSION = '0.1';
+our %IRSSI = (
+ authors => 'shabble',
+ contact => 'shabble+irssi@metavore.org',
+ name => 'easy_exec',
+ description => 'drop-in replacement for /script exec which imports'
+ . ' all of the Irssi:: namespace for easier testing',
+ license => 'Public Domain',
+ );
+
+Irssi::signal_add_first 'command script exec', \&better_exec;
+
+sub better_exec {
+ my ($args, $serv, $witem) = @_;
+ eval $args;
+ Irssi::signal_stop();
+}
+
+sub Dump {
+ print Dumper(\@_);
+}
+
+sub test() {
+ print "This is a test";
+}