mirror of
https://github.com/KevinMidboe/knowit_julekalender-2017.git
synced 2025-10-29 09:40:18 +00:00
12 lines
247 B
Python
12 lines
247 B
Python
from luke_03.steganography import main
|
|
|
|
def test_answer():
|
|
answer = 'Steganography is awesome and you Knowit!'
|
|
output = main()
|
|
print(output)
|
|
print(answer in output)
|
|
if answer in output:
|
|
assert True
|
|
else:
|
|
assert False
|