aboutsummaryrefslogtreecommitdiffstats
path: root/tests/scripts.rs
blob: 9503d8c1fdcb251946921fe099e64b36654d8629 (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
//! 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 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"));
}