add List.sort test

This commit is contained in:
Folkert 2022-05-06 16:45:50 +02:00
parent 0a2a43546c
commit e2b7056e20
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C
2 changed files with 33 additions and 0 deletions

View file

@ -1397,3 +1397,14 @@ fn list_map_closure_owns() {
"#
)
}
#[mono_test]
fn list_sort_asc() {
indoc!(
r#"
app "test" provides [ out ] to "./platform"
out = List.sortAsc [ 4,3,2,1 ]
"#
)
}