]> git.sur5r.net Git - i3/i3/commitdiff
tests: add cmd() function for typing less to get i3 to run a command
authorMichael Stapelberg <michael@stapelberg.de>
Mon, 29 Nov 2010 10:21:33 +0000 (11:21 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Mon, 29 Nov 2010 10:21:33 +0000 (11:21 +0100)
testcases/t/lib/i3test.pm

index 83b48e11da55811ea3723433f7d3a1c3308fa53b..79ca0266871cc1e18f86dc00a775802662728d48 100644 (file)
@@ -10,7 +10,7 @@ use List::Util qw(first);
 use v5.10;
 
 use Exporter ();
-our @EXPORT = qw(get_workspace_names get_unused_workspace get_ws_content get_ws get_focused open_empty_con open_standard_window);
+our @EXPORT = qw(get_workspace_names get_unused_workspace get_ws_content get_ws get_focused open_empty_con open_standard_window cmd);
 
 BEGIN {
     my $window_count = 0;
@@ -119,4 +119,8 @@ sub get_focused {
     return $lf;
 }
 
+sub cmd {
+    i3("/tmp/nestedcons")->command(@_)->recv
+}
+
 1