Skip to content

Commit

Permalink
Sync pangram tests (#848)
Browse files Browse the repository at this point in the history
  • Loading branch information
BNAndras authored Mar 23, 2024
1 parent 6bcfce7 commit dea073d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 5 deletions.
18 changes: 15 additions & 3 deletions exercises/practice/pangram/.meta/tests.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# This is an auto-generated file. Regular comments will be removed when this
# file is regenerated. Regenerating will not touch any manually added keys,
# so comments can be added in a "comment" key.
# This is an auto-generated file.
#
# Regenerating this file via `configlet sync` will:
# - Recreate every `description` key/value pair
# - Recreate every `reimplements` key/value pair, where they exist in problem-specifications
# - Remove any `include = true` key/value pair (an omitted `include` key implies inclusion)
# - Preserve any other key/value pair
#
# As user-added comments (using the # character) will be removed when this file
# is regenerated, comments can be added via a `comment` key.

[64f61791-508e-4f5c-83ab-05de042b0149]
description = "empty sentence"
Expand Down Expand Up @@ -31,3 +38,8 @@ description = "mixed case and punctuation"

[2577bf54-83c8-402d-a64b-a2c0f7bb213a]
description = "case insensitive"
include = false

[7138e389-83e4-4c6e-8413-1e40a0076951]
description = "a-m and A-M are 26 different characters but not a pangram"
reimplements = "2577bf54-83c8-402d-a64b-a2c0f7bb213a"
4 changes: 2 additions & 2 deletions exercises/practice/pangram/pangram_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ TEST_CASE("pangram_with_mixed_case_and_punctuation")
REQUIRE(pangram::is_pangram("\"Five quacking Zephyrs jolt my wax bed.\""));
}

TEST_CASE("upper_and_lower_should_not_be_counted_separately")
TEST_CASE("a_to_m_and_A_to_M_are_26_different_characters_but_not_a_pangram")
{
REQUIRE(!pangram::is_pangram("the quick brown fox jumps over with lazy FX"));
REQUIRE(!pangram::is_pangram("abcdefghijklm ABCDEFGHIJKLM"));
}
#endif

0 comments on commit dea073d

Please sign in to comment.