dust/tests/dust_tests.rs

11 lines
187 B
Rust
Raw Normal View History

2023-08-22 18:26:49 +00:00
use std::fs::read_to_string;
use whale_lib::*;
#[test]
fn collections() {
let file_contents = read_to_string("tests/collections.ds").unwrap();
eval(&file_contents).unwrap();
}