]> git.sur5r.net Git - i3/i3/commitdiff
add testcase for commit 87525ad
authorMichael Stapelberg <michael@stapelberg.de>
Thu, 27 Sep 2012 10:37:38 +0000 (12:37 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Thu, 27 Sep 2012 10:37:38 +0000 (12:37 +0200)
testcases/t/113-urgent.t

index 85d2035dd0966e19f105e31287042362020932c8..ff44e0ea0bc263ed52d29b0a789212c97ae1809f 100644 (file)
@@ -213,6 +213,24 @@ sync_with_i3;
 $urgent = count_urgent(get_ws($tmp));
 is($urgent, 0, 'All urgent flags got cleared');
 
+################################################################################
+# Regression test: Check that urgent floating containers work properly (ticket
+# #821)
+################################################################################
+
+$tmp = fresh_workspace;
+my $floating_win = open_floating_window;
+
+# switch away
+fresh_workspace;
+
+$floating_win->add_hint('urgency');
+sync_with_i3;
+
+cmd "workspace $tmp";
+
+does_i3_live;
+
 exit_gracefully($pid);
 
 done_testing;