Skip to content

Commit d56f06e

Browse files
reverse-string: Sync tests (#2761)
1 parent 9aac988 commit d56f06e

File tree

3 files changed

+32
-3
lines changed

3 files changed

+32
-3
lines changed

exercises/practice/reverse-string/.meta/config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"msomji",
1414
"muzimuzhi",
1515
"ppiliar",
16+
"sanderploegsma",
1617
"sjwarner",
1718
"sjwarner-bp",
1819
"SleeplessByte",
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Design
2+
3+
The [canonical data][canonical-data] for this exercise contains test cases for Unicode handling.
4+
However, as the Java track currently has no concepts explaining how to work with Unicode in Java, we currently consider Unicode as out-of-scope for this exercise.
5+
6+
[canonical-data]: https://github.com/exercism/problem-specifications/blob/882ade254831f23f78c79dfc20ec3918b32fc690/exercises/reverse-string/canonical-data.json

exercises/practice/reverse-string/.meta/tests.toml

Lines changed: 25 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
1-
# This is an auto-generated file. Regular comments will be removed when this
2-
# file is regenerated. Regenerating will not touch any manually added keys,
3-
# so comments can be added in a "comment" key.
1+
# This is an auto-generated file.
2+
#
3+
# Regenerating this file via `configlet sync` will:
4+
# - Recreate every `description` key/value pair
5+
# - Recreate every `reimplements` key/value pair, where they exist in problem-specifications
6+
# - Remove any `include = true` key/value pair (an omitted `include` key implies inclusion)
7+
# - Preserve any other key/value pair
8+
#
9+
# As user-added comments (using the # character) will be removed when this file
10+
# is regenerated, comments can be added via a `comment` key.
411

512
[c3b7d806-dced-49ee-8543-933fd1719b1c]
613
description = "an empty string"
@@ -19,3 +26,18 @@ description = "a palindrome"
1926

2027
[b9e7dec1-c6df-40bd-9fa3-cd7ded010c4c]
2128
description = "an even-sized word"
29+
30+
[1bed0f8a-13b0-4bd3-9d59-3d0593326fa2]
31+
description = "wide characters"
32+
include = false
33+
comment = "Unicode is currently considered out of scope for this exercise"
34+
35+
[93d7e1b8-f60f-4f3c-9559-4056e10d2ead]
36+
description = "grapheme cluster with pre-combined form"
37+
include = false
38+
comment = "Unicode is currently considered out of scope for this exercise"
39+
40+
[1028b2c1-6763-4459-8540-2da47ca512d9]
41+
description = "grapheme clusters"
42+
include = false
43+
comment = "Unicode is currently considered out of scope for this exercise"

0 commit comments

Comments
 (0)