thrashing

This commit is contained in:
Dan Knutson 2021-10-24 11:35:45 -05:00
parent 46365da73a
commit 13fd72f3d8
2 changed files with 21 additions and 5 deletions

View file

@ -1005,3 +1005,12 @@ fn str_trim_hello_world() {
RocStr
);
}
#[test]
fn str_trim_hello_world_both_large() {
assert_evals_to!(
indoc!(r#"Str.trim " hello world world ""#),
RocStr::from("hello world world"),
RocStr
);
}