1
0

Clean up example tests

This commit is contained in:
Jeff 2024-01-31 10:18:25 -05:00
parent c5241bb0af
commit 9c87d70659
3 changed files with 11 additions and 54 deletions

View File

@ -1,4 +1,4 @@
data = json:parse(fs:read('examples/assets/jq_data.json'))
data = json:parse(fs:read_file('examples/assets/jq_data.json'))
new_data = []

View File

@ -1,4 +1,4 @@
raw_data = fs:read('examples/assets/seaCreatures.json')
raw_data = fs:read_file('examples/assets/seaCreatures.json')
sea_creatures = json:parse(raw_data)
data = {

View File

@ -9,6 +9,13 @@ fn r#async() {
interpret(&file_contents).unwrap();
}
#[test]
fn async_commands() {
let file_contents = read_to_string("examples/async_commands.ds").unwrap();
interpret(&file_contents).unwrap();
}
#[test]
#[ignore]
fn async_download() {
@ -26,8 +33,8 @@ fn clue_solver() {
#[test]
#[ignore]
fn fetch() {
let file_contents = read_to_string("examples/fetch.ds").unwrap();
fn download() {
let file_contents = read_to_string("examples/download.ds").unwrap();
interpret(&file_contents).unwrap();
}
@ -46,13 +53,6 @@ fn fizzbuzz() {
interpret(&file_contents).unwrap();
}
#[test]
fn for_loop() {
let file_contents = read_to_string("examples/for_loop.ds").unwrap();
interpret(&file_contents).unwrap();
}
#[test]
fn hello_world() {
let file_contents = read_to_string("examples/hello_world.ds").unwrap();
@ -66,28 +66,6 @@ fn jq_data() {
interpret(&file_contents).unwrap();
}
#[test]
fn list() {
let file_contents = read_to_string("examples/list.ds").unwrap();
interpret(&file_contents).unwrap();
}
#[test]
fn map() {
let file_contents = read_to_string("examples/map.ds").unwrap();
interpret(&file_contents).unwrap();
}
#[test]
fn r#match() {
let file_contents = read_to_string("examples/match.ds").unwrap();
interpret(&file_contents).unwrap();
}
#[test]
fn random() {
let file_contents = read_to_string("examples/random.ds").unwrap();
@ -101,24 +79,3 @@ fn sea_creatures() {
interpret(&file_contents).unwrap();
}
#[test]
fn variables() {
let file_contents = read_to_string("examples/variables.ds").unwrap();
interpret(&file_contents).unwrap();
}
#[test]
fn while_loop() {
let file_contents = read_to_string("examples/while_loop.ds").unwrap();
interpret(&file_contents).unwrap();
}
#[test]
fn r#yield() {
let file_contents = read_to_string("examples/yield.ds").unwrap();
interpret(&file_contents).unwrap();
}