Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions exercises/practice/flower-field/.meta/tests.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,6 @@ description = "cross"

[dd9d4ca8-9e68-4f78-a677-a2a70fd7a7b8]
description = "large garden"

[6e4ac13a-3e43-4728-a2e3-3551d4b1a996]
description = "multiple adjacent flowers"
5 changes: 4 additions & 1 deletion exercises/practice/flower-field/flower_field_test.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# These tests are auto-generated with test data from:
# https://github.com/exercism/problem-specifications/tree/main/exercises/flower-field/canonical-data.json
# File last updated on 2025-06-25
# File last updated on 2025-12-30

import unittest

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

def test_multiple_adjacent_flowers(self):
self.assertEqual(annotate([" ** "]), ["1**1"])

# Additional tests for this track
def test_annotate_9(self):
self.assertEqual(
Expand Down
Loading