diff --git a/exercises/practice/atbash-cipher/.meta/test_template.tera b/exercises/practice/atbash-cipher/.meta/test_template.tera new file mode 100644 index 000000000..c77c74649 --- /dev/null +++ b/exercises/practice/atbash-cipher/.meta/test_template.tera @@ -0,0 +1,14 @@ +use atbash_cipher as cipher; + +{% for group in cases %} +{% for test in group.cases %} +#[test] +#[ignore] +fn {{ test.description | make_ident }}() { + assert_eq!( + cipher::{{ test.property }}("{{ test.input.phrase }}"), + "{{ test.expected }}" + ); +} +{% endfor -%} +{% endfor -%} diff --git a/exercises/practice/atbash-cipher/.meta/tests.toml b/exercises/practice/atbash-cipher/.meta/tests.toml index be690e975..c082d07cc 100644 --- a/exercises/practice/atbash-cipher/.meta/tests.toml +++ b/exercises/practice/atbash-cipher/.meta/tests.toml @@ -1,3 +1,52 @@ -# 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. + +[2f47ebe1-eab9-4d6b-b3c6-627562a31c77] +description = "encode -> encode yes" + +[b4ffe781-ea81-4b74-b268-cc58ba21c739] +description = "encode -> encode no" + +[10e48927-24ab-4c4d-9d3f-3067724ace00] +description = "encode -> encode OMG" + +[d59b8bc3-509a-4a9a-834c-6f501b98750b] +description = "encode -> encode spaces" + +[31d44b11-81b7-4a94-8b43-4af6a2449429] +description = "encode -> encode mindblowingly" + +[d503361a-1433-48c0-aae0-d41b5baa33ff] +description = "encode -> encode numbers" + +[79c8a2d5-0772-42d4-b41b-531d0b5da926] +description = "encode -> encode deep thought" + +[9ca13d23-d32a-4967-a1fd-6100b8742bab] +description = "encode -> encode all the letters" + +[bb50e087-7fdf-48e7-9223-284fe7e69851] +description = "decode -> decode exercism" + +[ac021097-cd5d-4717-8907-b0814b9e292c] +description = "decode -> decode a sentence" + +[18729de3-de74-49b8-b68c-025eaf77f851] +description = "decode -> decode numbers" + +[0f30325f-f53b-415d-ad3e-a7a4f63de034] +description = "decode -> decode all the letters" + +[39640287-30c6-4c8c-9bac-9d613d1a5674] +description = "decode -> decode with too many spaces" + +[b34edf13-34c0-49b5-aa21-0768928000d5] +description = "decode -> decode with no spaces" diff --git a/exercises/practice/atbash-cipher/tests/atbash-cipher.rs b/exercises/practice/atbash-cipher/tests/atbash-cipher.rs index 214af9fe3..140a7611e 100644 --- a/exercises/practice/atbash-cipher/tests/atbash-cipher.rs +++ b/exercises/practice/atbash-cipher/tests/atbash-cipher.rs @@ -94,6 +94,6 @@ fn decode_with_too_many_spaces() { fn decode_with_no_spaces() { assert_eq!( cipher::decode("zmlyhgzxovrhlugvmzhgvkkrmthglmv"), - "anobstacleisoftenasteppingstone", + "anobstacleisoftenasteppingstone" ); }