~free.ekanayaka/storm/any-expr

« back to all changes in this revision

Viewing changes to tests/helper.py

  • Committer: James Henstridge
  • Date: 2009-11-02 11:11:20 UTC
  • mfrom: (337 trunk)
  • mto: This revision was merged to the branch mainline in revision 338.
  • Revision ID: james@jamesh.id.au-20091102111120-02m5bsh4d09zw86z
mergeĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
67
67
                break
68
68
        is_supported = getattr(self, "is_supported", None)
69
69
        if is_supported is not None and not is_supported():
70
 
            if hasattr(result, "addSkip"):
71
 
                result.startTest(self)
72
 
                result.addSkip(self, "Test not supported")
73
70
            return
74
71
        unittest.TestCase.run(self, result)
75
72