feat: kata vigenere cipher test: test for kata vigenere cipher
This commit is contained in:
parent
c6b4d8f3d9
commit
ee9265d00c
9
src/codewars/kata_cipher_helper.py
Normal file
9
src/codewars/kata_cipher_helper.py
Normal file
@ -0,0 +1,9 @@
|
||||
class VigenereCipher(object):
|
||||
def __init__(self, key, alphabet):
|
||||
pass
|
||||
|
||||
def encode(self, text):
|
||||
pass
|
||||
|
||||
def decode(self, text):
|
||||
pass
|
||||
5
tests/codewars/test_cipher_helper.py
Normal file
5
tests/codewars/test_cipher_helper.py
Normal file
@ -0,0 +1,5 @@
|
||||
"""from src.codewars.kata_cipher_helper import *
|
||||
|
||||
|
||||
def test_cipher_helper():
|
||||
pass"""
|
||||
Loading…
x
Reference in New Issue
Block a user