dust/tests/dust_tests.rs
2023-08-22 14:26:49 -04:00

11 lines
187 B
Rust

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();
}