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

« back to all changes in this revision

Viewing changes to www/apps/tutorial/test/parse_tute.py

  • Committer: dilshan_a
  • Date: 2008-01-24 04:52:56 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:283
Fixed a bug where variables were persistent across test cases.

Added initial minutes/report/documentation on tutorials.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
"""
 
2
This file provides the function parse_tutorial_file which takes an
 
3
xml specification of a tutorial problem file and returns a test suite object
 
4
for that problem. It throws a ParseException if there was a problem parsing
 
5
the file.
 
6
"""
 
7
 
1
8
from xml.dom.minidom import *
2
9
from TestFramework import *
3
10