Update the CLI test formatting.
continuous-integration/drone/tag Build is passing

This commit is contained in:
2023-10-10 21:33:15 +03:00
parent c27d3eca13
commit 59d8fe7a4f
3 changed files with 9 additions and 9 deletions
@@ -36,8 +36,8 @@ class SimpleTestReportFormatterSpec extends Specification {
where: "Possible variants of tests"
isPassed || expectedFormat
true || "✓ A simple test\n\tThen Then block\n"
false || " A simple test\n\tThen Then block\n"
true || "✓ A simple test\n\tThen: Then block\n\n"
false || " A simple test\n\tThen: Then block\n\n"
}
def "If the map of methods have GivenWhenThen blocks."() {
@@ -61,8 +61,8 @@ class SimpleTestReportFormatterSpec extends Specification {
where: "Possible variants of tests"
isPassed || expectedFormat
true || "✓ A simple test\n\tGiven Given block\n\tWhen When block\n\tThen Then block\n"
false || " A simple test\n\tGiven Given block\n\tWhen When block\n\tThen Then block\n"
true || "✓ A simple test\n\tGiven: Given block\n\tWhen: When block\n\tThen: Then block\n\n"
false || " A simple test\n\tGiven: Given block\n\tWhen: When block\n\tThen: Then block\n\n"
}
}