|
| 1 | +[![Crate][crate-image]][crate-link] |
| 2 | +[![Docs][docs-image]][docs-link] |
| 3 | +[![Status][test-action-image]][test-action-link] |
| 4 | +[![Apache 2.0 Licensed][license-apache-image]][license-apache-link] |
| 5 | +[![MIT Licensed][license-mit-image]][license-mit-link] |
| 6 | + |
| 7 | + |
| 8 | +# rustest-fixtures: A set of fixtures for rustest |
| 9 | + |
| 10 | + |
| 11 | +This crate provides a set of "standard" fixtures to use with rustest. |
| 12 | + |
| 13 | +For now, only three fixtures are provided: |
| 14 | + |
| 15 | +- TempFile: Get a temporary file for your tests |
| 16 | +- TempDir: Get a temporary directory for your tests |
| 17 | +- Global: Put a fixture in the global scope |
| 18 | + |
| 19 | +## Contributing |
| 20 | + |
| 21 | +Rustest is pretty young. Issue reports and PR are welcomed ! |
| 22 | + |
| 23 | + |
| 24 | +## License |
| 25 | + |
| 26 | +Licensed under either of |
| 27 | + |
| 28 | +* Apache License, Version 2.0, ([LICENSE-APACHE](/LICENSE-APACHE) or [license-apache-link](http://www.apache.org/licenses/LICENSE-2.0)) |
| 29 | + |
| 30 | +* MIT license [LICENSE-MIT](/LICENSE-MIT) or [license-MIT-link](http://opensource.org/licenses/MIT) at your option. |
| 31 | + |
| 32 | +[//]: # (links) |
| 33 | + |
| 34 | +[crate-image]: https://img.shields.io/crates/v/rustest.svg |
| 35 | +[crate-link]: https://crates.io/crates/rustest |
| 36 | +[docs-image]: https://docs.rs/rustest/badge.svg |
| 37 | +[docs-link]: https://docs.rs/rustest/ |
| 38 | +[test-action-image]: https://github.com/mgautierfr/rustest/workflows/Cargo%20Build%20&%20Test/badge.svg |
| 39 | +[test-action-link]: https://github.com/mgautierfr/rustest/actions/workflows/ci.yml?query=workflow%3ACargo |
| 40 | +[license-apache-image]: https://img.shields.io/badge/license-Apache2.0-blue.svg |
| 41 | +[license-mit-image]: https://img.shields.io/badge/license-MIT-blue.svg |
| 42 | +[license-apache-link]: http://www.apache.org/licenses/LICENSE-2.0 |
| 43 | +[license-MIT-link]: http://opensource.org/licenses/MIT |
| 44 | + |
0 commit comments