Provided one example of a skip working with it.

Shows up in the to-do list as expected
This commit is contained in:
Brandon Thetford
2024-06-27 20:57:25 -07:00
parent 3f29a96b33
commit e45b7daf0e

View File

@@ -1,4 +1,4 @@
using JetBrains.Annotations;
using JetBrains.Annotations;
namespace Terminal.Gui.ViewsTests;
@@ -362,7 +362,7 @@ public class ShortcutTests
// " C 0 A "
[InlineData (-1, 0, 0)]
[InlineData (0, 1, 1)]
[InlineData (1, 0, 1)] // BUGBUG: This should be 1,1,1. We need to fix the logic in the Shortcut class.
[InlineData (1, 1, 1, Skip = "BUGBUG: This breaks. We need to fix the logic in the Shortcut class.")]
[InlineData (2, 1, 1)]
[InlineData (3, 1, 1)]
[InlineData (4, 1, 1)]