mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 18:58:31 +07:00
edu --> educational-python educational --> educational-core interactive-learning --> student
18 lines
420 B
Plaintext
18 lines
420 B
Plaintext
from test_helper import run_common_tests, failed, passed, get_answer_placeholders
|
|
|
|
|
|
def test_answer_placeholders():
|
|
placeholders = get_answer_placeholders()
|
|
placeholder = placeholders[0]
|
|
if placeholder == "": # TODO: your condition here
|
|
passed()
|
|
else:
|
|
failed()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
run_common_tests()
|
|
# test_answer_placeholders() # TODO: uncomment test call
|
|
|
|
|