We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dc9e55 commit a510215Copy full SHA for a510215
exercises/practice/simple-cipher/test/simple_cipher_test.exs
@@ -72,12 +72,6 @@ defmodule SimpleCipherTest do
72
assert SimpleCipher.decode("zabcdefghi", "abcdefghij") == "zzzzzzzzzz"
73
end
74
75
- @tag :pending
76
- test "only lowercase a-z are translated, rest are passed through" do
77
- assert SimpleCipher.encode("this is a test!", "d") == "wklv lv d whvw!"
78
- assert SimpleCipher.decode("wklv lv d whvw!", "d") == "this is a test!"
79
- end
80
-
81
@tag :pending
82
test "can encode messages longer than the key" do
83
assert SimpleCipher.encode("abc", "a") == "abc"
0 commit comments