Mark some tests that need keyword implemented as expect fail.

This commit is contained in:
Tom Alexander 2023-04-19 14:45:32 -04:00
parent 35aab10155
commit 4a31dd6db0
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
1 changed files with 4 additions and 0 deletions

View File

@ -71,6 +71,10 @@ use organic::sexp;
fn is_expect_fail(name: &str) -> Option<&str> {
match name {
"drawer_drawer_with_headline_inside" => Some("Apparently lines with :end: become their own paragraph. This odd behavior needs to be investigated more."),
"element_container_priority_drawer_dynamic_block" => Some("Keyword needs to be implemented."),
"element_container_priority_dynamic_block_dynamic_block" => Some("Keyword needs to be implemented."),
"element_container_priority_footnote_definition_dynamic_block" => Some("Keyword needs to be implemented."),
"element_container_priority_greater_block_dynamic_block" => Some("Keyword needs to be implemented."),
_ => None,
}
}