Skip to content

Commit a510215

Browse files
authored
Simple cipher remove test: do not check what happens with invalid input (#852)
1 parent 3dc9e55 commit a510215

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

exercises/practice/simple-cipher/test/simple_cipher_test.exs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,6 @@ defmodule SimpleCipherTest do
7272
assert SimpleCipher.decode("zabcdefghi", "abcdefghij") == "zzzzzzzzzz"
7373
end
7474

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-
8175
@tag :pending
8276
test "can encode messages longer than the key" do
8377
assert SimpleCipher.encode("abc", "a") == "abc"

0 commit comments

Comments
 (0)