mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-11 05:34:11 +03:00
broke up list_prepend_tests
This commit is contained in:
parent
b3ce6041a3
commit
01b3d2cf61
@ -94,12 +94,19 @@ mod gen_list {
|
||||
&[6, 4],
|
||||
&'static [i64]
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn list_prepend_bools() {
|
||||
assert_evals_to!(
|
||||
"List.prepend [ True, False ] True",
|
||||
&[true, true, false],
|
||||
&'static [bool]
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn list_prepend_big_list() {
|
||||
assert_evals_to!(
|
||||
"List.prepend [ 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 100, 100, 100, 100 ] 9",
|
||||
&[9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 100, 100, 100, 100],
|
||||
|
Loading…
Reference in New Issue
Block a user