fixes, now .0 from rust decimal is being discussed

This commit is contained in:
filipriec
2025-07-06 20:53:40 +02:00
parent 4c57b562e6
commit 314a957922
5 changed files with 139 additions and 73 deletions

View File

@@ -85,19 +85,6 @@ fn test_steel_vals_to_strings() {
assert_eq!(result, expected);
}
#[rstest]
fn test_steel_val_vector_to_string() {
let inner_vals = vec![
SteelVal::StringV("a".into()),
SteelVal::StringV("b".into()),
SteelVal::StringV("c".into()),
];
let vector_val = SteelVal::VectorV(inner_vals.into());
let result = TypeConverter::steel_val_to_string(vector_val).unwrap();
assert_eq!(result, "a,b,c");
}
#[rstest]
#[case("123.456", "123.456")]
#[case("42", "42")]