mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
14 lines
277 B
C++
14 lines
277 B
C++
#include <quiz.h>
|
|
#include "execution_environment.h"
|
|
|
|
QUIZ_CASE(python_basics) {
|
|
TestExecutionEnvironment env = init_environnement();
|
|
assert_command_execution_succeeds(env, "2+3","5\n");
|
|
deinit_environment();
|
|
}
|
|
|
|
// "base" scripts to test.
|
|
QUIZ_CASE(python_template) {
|
|
|
|
}
|