diff --git a/exercises/two-bucket/canonical-data.json b/exercises/two-bucket/canonical-data.json index 25256b0da6..06a709242c 100644 --- a/exercises/two-bucket/canonical-data.json +++ b/exercises/two-bucket/canonical-data.json @@ -1,6 +1,6 @@ { "exercise": "two-bucket", - "version": "1.0.1", + "version": "1.1.0", "cases": [ { "description": "Measure using bucket one of size 3 and bucket two of size 5 - start with bucket one", @@ -53,6 +53,32 @@ "goal_bucket": "two", "other_bucket": 7 } + }, + { + "description": "Measure one step using bucket one of size 1 and bucket two of size 3 - start with bucket two", + "property": "measure", + "bucket_one": 1, + "bucket_two": 3, + "goal": 3, + "start_bucket": "two", + "expected": { + "moves": 1, + "goal_bucket": "two", + "other_bucket": 0 + } + }, + { + "description": "Measure using bucket one of size 2 and bucket two of size 3 - start with bucket one and end with bucket two", + "property": "measure", + "bucket_one": 2, + "bucket_two": 3, + "goal": 3, + "start_bucket": "one", + "expected": { + "moves": 4, + "goal_bucket": "two", + "other_bucket": 1 + } } ] }