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

« back to all changes in this revision

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

  • Committer: William Grant
  • Date: 2009-12-15 00:24:40 UTC
  • Revision ID: me@williamgrant.id.au-20091215002440-5rxncmcoqx82dhdj
Disable support for testcases with a default other than 'ignore'.

Show diffs side-by-side

added added

removed removed

Lines of Context:
145
145
        represents a TestFramework TestCasePart.
146
146
 
147
147
        Initialise with descriptions (pass,fail) and a default behavior for output
148
 
        If default is match, unspecified files are matched exactly
149
 
        If default is ignore, unspecified files are ignored
 
148
        If default is match, values without tests are matched exactly
 
149
        If default is ignore, values without tests are ignored
150
150
        The default default is match.
151
151
        """
152
152
        self._pass_msg = test_case.passmsg
155
155
        if self._default == 'ignore':
156
156
            self._default_func = self.true
157
157
        else:
 
158
            raise TestCreationError(
 
159
                "Only 'ignore' defaults are supported at this time.")
158
160
            self._default_func = self.match
159
161
 
160
162
        self._file_tests = {}