Add integration test for the children completion check fix

This commit is contained in:
Martin Hořeňovský 2019-06-30 00:00:41 +02:00
parent 800f1b1d3d
commit 9a6551b22b
No known key found for this signature in database
GPG key ID: DE48307B8B0D381A
2 changed files with 17 additions and 0 deletions

View file

@ -189,3 +189,18 @@ TEST_CASE( "#1394 nested", "[.][approvals][tracker]" ) {
REQUIRE(1 == 0);
}
}
// Selecting a "not last" section inside a test case via -c "section" would
// previously only run the first subsection, instead of running all of them.
// This allows us to check that `"#1670 regression check" -c A` leads to
// 2 successful assertions.
TEST_CASE("#1670 regression check", "[.approvals][tracker]") {
SECTION("A") {
SECTION("1") SUCCEED();
SECTION("2") SUCCEED();
}
SECTION("B") {
SECTION("1") SUCCEED();
SECTION("2") SUCCEED();
}
}