fixtures 2.5.0

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

use fixtures::fixtures;

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

fn main() {}