dust/tests/built_in_values.rs

7 lines
108 B
Rust
Raw Normal View History

2024-01-06 07:26:51 +00:00
use dust_lang::*;
#[test]
fn args() {
assert!(interpret("args").is_ok_and(|value| value.is_list()));
}