summaryrefslogtreecommitdiff
path: root/rust/tests/interpret_test.rs
blob: 09c74fed4b2fb4d38c9b4ec8ecffb1fd3bffa2e6 (plain)
1
2
3
4
5
6
7
use lambda::run;

#[test]
fn interpreter_can_read_and_interpret_file() {
    assert_eq!("12", run("sample/test.txt"));
    assert_eq!("true", run("sample/test_full.txt"));
}