Add a case ignore flag

This commit is contained in:
Omar Abdulla
2025-08-04 19:21:31 +03:00
parent b7ddb2da92
commit 82d00466ba
3 changed files with 32 additions and 0 deletions
+1
View File
@@ -15,6 +15,7 @@ pub struct Case {
pub inputs: Vec<Input>,
pub group: Option<String>,
pub expected: Option<Expected>,
pub ignore: Option<bool>,
}
impl Case {