Skip to content

Commit 7ccf733

Browse files
committed
Synced tests to problem-specifications and regenerated test cases.
1 parent 6865784 commit 7ccf733

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

exercises/practice/flower-field/.meta/tests.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,6 @@ description = "cross"
4444

4545
[dd9d4ca8-9e68-4f78-a677-a2a70fd7a7b8]
4646
description = "large garden"
47+
48+
[6e4ac13a-3e43-4728-a2e3-3551d4b1a996]
49+
description = "multiple adjacent flowers"

exercises/practice/flower-field/flower_field_test.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# These tests are auto-generated with test data from:
22
# https://github.com/exercism/problem-specifications/tree/main/exercises/flower-field/canonical-data.json
3-
# File last updated on 2025-06-25
3+
# File last updated on 2025-12-30
44

55
import unittest
66

@@ -52,6 +52,9 @@ def test_large_garden(self):
5252
["1*22*1", "12*322", " 123*2", "112*4*", "1*22*2", "111111"],
5353
)
5454

55+
def test_multiple_adjacent_flowers(self):
56+
self.assertEqual(annotate([" ** "]), ["1**1"])
57+
5558
# Additional tests for this track
5659
def test_annotate_9(self):
5760
self.assertEqual(

0 commit comments

Comments
 (0)