Skip to content

Commit

Permalink
test: add future FIXME for unrecognized formula
Browse files Browse the repository at this point in the history
  • Loading branch information
sftse committed Oct 30, 2024
1 parent fb267a3 commit 67363c0
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2154,6 +2154,12 @@ fn test_high_byte_strings_and_unicode_strings_without_reserved_tags() {
}
}
}
// FIXME: Libreoffice recognizes a REPT("O", I44) formula
let formulas = xls.worksheet_formula("Sheet1").unwrap();
assert_eq!(
"Unrecognised formula for cell (43, 9): Unrecognized { typ: \"ptg\", val: 192 }",
formulas.get_value((43, 9)).unwrap()
);
}

#[test]
Expand Down

0 comments on commit 67363c0

Please sign in to comment.