~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/webapp/tutorial/test/parse_exercise.py

Modified the database so that exercises are now stored in the database, rather
than in flat files.

This also necessitated adding new tables and storm classes for test suites
and test cases.

Note that this commit merely changes the database and adds a script to
upload exercises. The code for actually reading exercises has yet
to be changed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
183
183
        elif child.tagName == 'case':
184
184
            exercise_suite.add_case(getCaseData(child, console))
185
185
 
186
 
    return exercise_suite
187
 
 
 
186
    return exercise_suite
 
187