You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
395 B
18 lines
395 B
from ..hangman import check
|
|
from ..hangman import ALPHABET
|
|
tests = [
|
|
{
|
|
'new': 'this/is/so/complicated',
|
|
'prev':'...s/.s/s./.........e.',
|
|
'remaining_letters':ALPHABET
|
|
},
|
|
{
|
|
'new':'./a/b/../',
|
|
'prev':'../../..../...',
|
|
'remaining_letters':ALPHABET
|
|
}
|
|
]
|
|
def test():
|
|
for test in tests:
|
|
print(test)
|
|
print(check(**test))
|