summaryrefslogtreecommitdiff
path: root/python/edu/course-creator/resources/fileTemplates/internal/tests.py.ft
diff options
context:
space:
mode:
Diffstat (limited to 'python/edu/course-creator/resources/fileTemplates/internal/tests.py.ft')
-rw-r--r--python/edu/course-creator/resources/fileTemplates/internal/tests.py.ft17
1 files changed, 17 insertions, 0 deletions
diff --git a/python/edu/course-creator/resources/fileTemplates/internal/tests.py.ft b/python/edu/course-creator/resources/fileTemplates/internal/tests.py.ft
new file mode 100644
index 000000000000..2e6fd4c78eed
--- /dev/null
+++ b/python/edu/course-creator/resources/fileTemplates/internal/tests.py.ft
@@ -0,0 +1,17 @@
+from test_helper import run_common_tests, failed, passed, get_task_windows
+
+
+def test_task_windows():
+ windows = get_task_windows()
+ window = windows[0]
+ if window != "": # TODO: your condition here
+ passed()
+ else:
+ failed()
+
+
+if __name__ == '__main__':
+ run_common_tests()
+ test_task_windows()
+
+