goldentests 1.4.1

A golden file testing library where tests can be configured within the same test file
Documentation
1
2
3
4
5
6
7
use goldentests::{TestConfig, TestResult};

#[test]
fn run_goldentests_example() -> TestResult<()> {
    let config = TestConfig::new("python", "examples", "# ");
    config.run_tests()
}