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 400f30a commit 93b98d9Copy full SHA for 93b98d9
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/run_test.v
@@ -165,3 +165,13 @@ fn test_large_garden() {
165
]
166
assert annotate(garden) == expected
167
}
168
169
+fn test_multiple_adjacent_flowers() {
170
+ garden := [
171
+ ' ** ',
172
+ ]
173
+ expected := [
174
+ '1**1',
175
176
+ assert annotate(garden) == expected
177
+}
0 commit comments