FIX: Removes the csv-sniffer in favour of a simple guess

This removes 500Kb form the was build so it is worth it.
We were using a very old version of the sniffer, the last one might not
have this bug though
This commit is contained in:
Nicolás Hatcher
2024-11-26 19:44:17 +01:00
committed by Nicolás Hatcher Andrés
parent 1f1fd24334
commit 949eafc97f
5 changed files with 63 additions and 93 deletions

View File

@@ -26,6 +26,27 @@ fn csv_paste() {
);
}
#[test]
fn csv_paste_formula() {
let mut model = UserModel::new_empty("model", "en", "UTC").unwrap();
let csv = "=YEAR(TODAY())";
let area = Area {
sheet: 0,
row: 1,
column: 1,
width: 1,
height: 1,
};
model.set_selected_cell(1, 1).unwrap();
model.paste_csv_string(&area, csv).unwrap();
assert_eq!(
model.get_formatted_cell_value(0, 1, 1),
Ok("2022".to_string())
);
}
#[test]
fn tsv_crlf_paste() {
let mut model = UserModel::new_empty("model", "en", "UTC").unwrap();