also assert_invalid fixture type

This commit is contained in:
NikVolf
2017-06-05 18:13:17 +03:00
parent b6eea87552
commit dfd6152cda
2 changed files with 23 additions and 0 deletions

View File

@ -31,6 +31,12 @@ pub enum Command {
action: Action,
text: String,
},
#[serde(rename = "assert_invalid")]
AssertInvalid {
line: u64,
filename: String,
text: String,
}
}
#[derive(Deserialize, Debug)]