]> git.sur5r.net Git - i3/i3/commitdiff
tests: Check that 'workspace number <number>' opens a new workspace
authorMichael Stapelberg <michael@stapelberg.de>
Wed, 9 May 2012 18:33:11 +0000 (20:33 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Wed, 9 May 2012 18:33:11 +0000 (20:33 +0200)
testcases/t/117-workspace.t

index 6c9fc6e135c0110127a48c75cac382c55a6bfde0..1d8888c78c230c2d753609f42ad54762d2773785 100644 (file)
@@ -134,6 +134,15 @@ cmd 'workspace number 4';
 is(focused_ws(), '4: foo', 'now on workspace 4: foo');
 ok(!workspace_exists('4'), 'workspace 4 still does not exist');
 
+################################################################################
+# Check that we "workspace number 5" will create workspace 5 if it does not yet
+# exist.
+################################################################################
+
+ok(!workspace_exists('5'), 'workspace 5 does not exist');
+cmd 'workspace number 5';
+ok(workspace_exists('5'), 'workspace 5 was created');
+
 ################################################################################
 # Verify that renaming workspaces works.
 ################################################################################