Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

reverse-string: Sync tests #2761

Merged
merged 1 commit into from
Mar 31, 2024
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
1 change: 1 addition & 0 deletions exercises/practice/reverse-string/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"msomji",
"muzimuzhi",
"ppiliar",
"sanderploegsma",
"sjwarner",
"sjwarner-bp",
"SleeplessByte",
Expand Down
6 changes: 6 additions & 0 deletions exercises/practice/reverse-string/.meta/design.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Design

The [canonical data][canonical-data] for this exercise contains test cases for Unicode handling.
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.

[canonical-data]: https://github.com/exercism/problem-specifications/blob/882ade254831f23f78c79dfc20ec3918b32fc690/exercises/reverse-string/canonical-data.json
28 changes: 25 additions & 3 deletions exercises/practice/reverse-string/.meta/tests.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# This is an auto-generated file. Regular comments will be removed when this
# file is regenerated. Regenerating will not touch any manually added keys,
# so comments can be added in a "comment" key.
# This is an auto-generated file.
#
# Regenerating this file via `configlet sync` will:
# - Recreate every `description` key/value pair
# - Recreate every `reimplements` key/value pair, where they exist in problem-specifications
# - Remove any `include = true` key/value pair (an omitted `include` key implies inclusion)
# - Preserve any other key/value pair
#
# As user-added comments (using the # character) will be removed when this file
# is regenerated, comments can be added via a `comment` key.

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

[b9e7dec1-c6df-40bd-9fa3-cd7ded010c4c]
description = "an even-sized word"

[1bed0f8a-13b0-4bd3-9d59-3d0593326fa2]
description = "wide characters"
include = false
comment = "Unicode is currently considered out of scope for this exercise"

[93d7e1b8-f60f-4f3c-9559-4056e10d2ead]
description = "grapheme cluster with pre-combined form"
include = false
comment = "Unicode is currently considered out of scope for this exercise"

[1028b2c1-6763-4459-8540-2da47ca512d9]
description = "grapheme clusters"
include = false
comment = "Unicode is currently considered out of scope for this exercise"