test-case 0.3.1

Provides #[test_case(...)] procedural macro attribute for generating parametrized test cases easily
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Changelog

## 0.3.0
### Breaking changes
* Crate has new maintainer: Wojciech Polak :hand: :tada:
* Crate has new name, as `test-case-derive` had no meaning for `derive` part.
* Delimiter for test case description is `;` instead of `::`.

  Reason: `::` is valid part of expression and rustc treats const variable as path
### New features
* Upgraded syn, quote and proc-macro-2 to v1
* Proper error propagation :tada:
  When there is for example a typo in function body, rustc can now show location
  of it instead of test_case location.
* Internally for tests crate uses `cargo insta` for snapshot testing