Ronnie van 't Westeinde
unread,Jul 14, 2009, 12:41:15 AM7/14/09Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Testoob
Hi,
I just came across a bug in the HTML generation (and XML) of testoob.
It fails
if both the testcase itself and the tearDown fail:
import unittest
import testoob
class SomeTestCases( unittest.TestCase ):
def tearDown(self):
raise TypeError
def test_case_testoob(self):
self.assertEqual(1,0)
if __name__ == '__main__':
testoob.main()
Run this code with the --html=something.html option, and you'll see
the issue.
I've made a fix and pushed it in ~rwestein/testoob/
html_double_fail_bug
Kind regards,
Ronnie