tree-sitter-dust/tests/dust_examples.rs

58 lines
1.1 KiB
Rust
Raw Normal View History

2023-09-29 15:56:07 +00:00
use std::fs::read_to_string;
2023-10-05 20:49:03 +00:00
use dust::*;
2023-09-29 15:56:07 +00:00
#[test]
fn collections() {
let file_contents = read_to_string("examples/collections.ds").unwrap();
for result in eval(&file_contents) {
result.unwrap();
}
}
#[test]
fn list() {
let file_contents = read_to_string("examples/list.ds").unwrap();
for result in eval(&file_contents) {
result.unwrap();
}
}
#[test]
fn table() {
let file_contents = read_to_string("examples/table.ds").unwrap();
for result in eval(&file_contents) {
result.unwrap();
}
}
#[test]
fn variables() {
let file_contents = read_to_string("examples/variables.ds").unwrap();
for result in eval(&file_contents) {
result.unwrap();
}
}
#[test]
fn scope() {
let file_contents = read_to_string("examples/scope.ds").unwrap();
for result in eval(&file_contents) {
result.unwrap();
}
}
#[test]
fn data_formats() {
let file_contents = read_to_string("examples/data_formats.ds").unwrap();
for result in eval(&file_contents) {
result.unwrap();
}
}