We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 398695a commit 19aa201Copy full SHA for 19aa201
exercises/practice/flower-field/.meta/tests.toml
@@ -44,3 +44,6 @@ description = "cross"
44
45
[dd9d4ca8-9e68-4f78-a677-a2a70fd7a7b8]
46
description = "large garden"
47
+
48
+[6e4ac13a-3e43-4728-a2e3-3551d4b1a996]
49
+description = "multiple adjacent flowers"
exercises/practice/flower-field/tests/flower_field.rs
@@ -188,3 +188,12 @@ fn large_garden() {
188
let actual = annotate(input);
189
assert_eq!(actual, expected);
190
}
191
192
+#[test]
193
+#[ignore]
194
+fn multiple_adjacent_flowers() {
195
+ let input = &[" ** "];
196
+ let expected = &["1**1"];
197
+ let actual = annotate(input);
198
+ assert_eq!(actual, expected);
199
+}
0 commit comments