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

« back to all changes in this revision

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

  • Committer: stevenbird
  • Date: 2008-01-24 04:23:25 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:282
* changed spelling of varible to variable
* example hello world test cases

Show diffs side-by-side

added added

removed removed

Lines of Context:
272
272
        try:
273
273
            self._global_space[variable] = eval(value)
274
274
        except:
275
 
            raise TestCreationError("Invalid value for variable %s: %s" %(varible, value))
 
275
            raise TestCreationError("Invalid value for variable %s: %s" %(variable, value))
276
276
 
277
277
    def add_arg(self, value, name=None):
278
278
        """ Add a value to the argument list. This only applies when testing functions.