File: datatest_runner.rs

package info (click to toggle)
jujutsu 0.30.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 9,756 kB
  • sloc: sh: 283; makefile: 31
file content (19 lines) | stat: -rw-r--r-- 508 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
mod datatest_config_schema;

datatest_stable::harness! {
    {
        test = datatest_config_schema::taplo_check_config_valid,
        root = "src/config",
        pattern = r".*\.toml",
    },
    {
        test = datatest_config_schema::taplo_check_config_valid,
        root = "tests/sample-configs/valid",
        pattern = r".*\.toml",
    },
    {
        test = datatest_config_schema::taplo_check_config_invalid,
        root = "tests/sample-configs/invalid",
        pattern = r".*\.toml",
    }
}