fixtures 2.5.0

Run tests against fixtures
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[cfg(test)]
use std::path::Path;

use fixtures::fixtures;

#[fixtures([
    "fixtures/tests/fixtures/negative_globs/*.txt",
    "!fixtures/tests/fixtures/negative_globs/*.skip.txt",
])]
#[test]
fn test(_path: &Path) {}

fn main() {}