-
Notifications
You must be signed in to change notification settings - Fork 524
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sync proverb with problem-specifications (#1789)
[no important files changed]
- Loading branch information
Showing
3 changed files
with
79 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{% for test in cases %} | ||
#[test] | ||
{% if loop.index != 1 -%} | ||
#[ignore] | ||
{% endif -%} | ||
fn {{ test.description | slugify | replace(from="-", to="_") }}() { | ||
let input = &{{ test.input.strings | json_encode() }}; | ||
let output = {{ crate_name }}::{{ fn_names[0] }}(input); | ||
{% if test.expected | length == 0 -%} | ||
let expected = String::new(); | ||
{%- else -%} | ||
let expected: String = {{ test.expected | json_encode() }}.join("\n"); | ||
{%- endif %} | ||
assert_eq!(output, expected); | ||
} | ||
{% endfor -%} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,28 @@ | ||
# 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. | ||
|
||
[e974b73e-7851-484f-8d6d-92e07fe742fc] | ||
description = "zero pieces" | ||
|
||
[2fcd5f5e-8b82-4e74-b51d-df28a5e0faa4] | ||
description = "one piece" | ||
|
||
[d9d0a8a1-d933-46e2-aa94-eecf679f4b0e] | ||
description = "two pieces" | ||
|
||
[c95ef757-5e94-4f0d-a6cb-d2083f5e5a83] | ||
description = "three pieces" | ||
|
||
[433fb91c-35a2-4d41-aeab-4de1e82b2126] | ||
description = "full proverb" | ||
|
||
[c1eefa5a-e8d9-41c7-91d4-99fab6d6b9f7] | ||
description = "four pieces modernized" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters