aboutsummaryrefslogtreecommitdiffstats
path: root/tests/scripts.rs
blob: 93034c47efff0c422260c3e669fb3fb887997834 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//! This file is generated by running `bash test-cases/generate.sh` - do not manually adjust.
mod common;

#[test]
fn case0() {
    common::test_case("case0", include_bytes!("../test-cases/case0/script.sh"), include_bytes!("../test-cases/case0/stdout.txt"));
}

#[test]
fn comment() {
    common::test_case("comment", include_bytes!("../test-cases/comment/script.sh"), include_bytes!("../test-cases/comment/stdout.txt"));
}

#[test]
fn fun0() {
    common::test_case("fun0", include_bytes!("../test-cases/fun0/script.sh"), include_bytes!("../test-cases/fun0/stdout.txt"));
}

#[test]
fn semicolon() {
    common::test_case("semicolon", include_bytes!("../test-cases/semicolon/script.sh"), include_bytes!("../test-cases/semicolon/stdout.txt"));
}

#[test]
fn variables() {
    common::test_case("variables", include_bytes!("../test-cases/variables/script.sh"), include_bytes!("../test-cases/variables/stdout.txt"));
}