From 58e5a1593760095a790edd53f256c18ca319db1a Mon Sep 17 00:00:00 2001 From: Nenad Date: Wed, 15 Jul 2026 13:16:28 +0200 Subject: [PATCH 1/2] Add bob test case for shouting a question --- exercises/practice/bob/.meta/tests.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/exercises/practice/bob/.meta/tests.toml b/exercises/practice/bob/.meta/tests.toml index 5299e289..8995c923 100644 --- a/exercises/practice/bob/.meta/tests.toml +++ b/exercises/practice/bob/.meta/tests.toml @@ -18,6 +18,9 @@ description = "shouting" [d6c98afd-df35-4806-b55e-2c457c3ab748] description = "shouting gibberish" +[3c954328-86fb-4c71-8961-e18d6a5e2517] +description = "shouting a statement containing a question mark" + [8a2e771d-d6f1-4e3f-b6c6-b41495556e37] description = "asking a question" From be8b96b081be36c36801b8bd9ee3f458fda23cb8 Mon Sep 17 00:00:00 2001 From: Nenad Date: Wed, 15 Jul 2026 13:17:49 +0200 Subject: [PATCH 2/2] Add test for shouting a statement with question mark Add test for shouting a statement with a question mark. --- exercises/practice/bob/tests/bob.cairo | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/exercises/practice/bob/tests/bob.cairo b/exercises/practice/bob/tests/bob.cairo index 133b77e5..1d573c94 100644 --- a/exercises/practice/bob/tests/bob.cairo +++ b/exercises/practice/bob/tests/bob.cairo @@ -20,6 +20,13 @@ fn shouting_gibberish() { assert_eq!("Whoa, chill out!", response(@input)); } +#[test] +#[ignore] +fn shouting_a_statement_containing_a_question_mark() { + let input = "DO LIONS EAT PEOPLE? AHHHHH."; + assert_eq!("Whoa, chill out!", response(@input)); +} + #[test] #[ignore] fn asking_a_question() {