We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Instead to use an anonymous case_1_2_1 we should separate any value list case in a nested submodule named as the identity follow by _<nr>.
case_1_2_1
_<nr>
An example
#[rstest(a => [1, 2], b => [3, 4]), c, case(5), case(6)] fn to_test(a:u32, b: u32, c: u32) { assert!(a*b != 0); }``` should generate follow tests:
to_test::case_1::a_1::b_1 to_test::case_1::a_1::b_2 to_test::case_1::a_2::b_1 to_test::case_1::a_2::b_2 to_test::case_2::a_1::b_1 to_test::case_2::a_1::b_2 to_test::case_2::a_2::b_1 to_test::case_2::a_2::b_2
The text was updated successfully, but these errors were encountered:
Done
Sorry, something went wrong.
#68 removed dead code. Removed itertools
dcb320a
dependency.
#68 Update changelog
2f1d9d2
No branches or pull requests
Instead to use an anonymous
case_1_2_1
we should separate any value list case in a nested submodule named as the identity follow by_<nr>
.An example
to_test::case_1::a_1::b_1
to_test::case_1::a_1::b_2
to_test::case_1::a_2::b_1
to_test::case_1::a_2::b_2
to_test::case_2::a_1::b_1
to_test::case_2::a_1::b_2
to_test::case_2::a_2::b_1
to_test::case_2::a_2::b_2
The text was updated successfully, but these errors were encountered: