summaryrefslogtreecommitdiff
path: root/testrepository/tests
diff options
context:
space:
mode:
authorRobert Collins <robertc@robertcollins.net>2015-03-10 15:31:02 +1300
committerRobert Collins <robertc@robertcollins.net>2015-03-10 15:31:02 +1300
commit696416fe07f3cae1aea40fcb7b3867d858638a6c (patch)
tree252da09ce1fe6d9136aaaf826c8ec763538c342f /testrepository/tests
parent5f485b0abe6133bb0f10266bfecae632124a6a77 (diff)
downloadtestrepository-696416fe07f3cae1aea40fcb7b3867d858638a6c.tar.gz
Fixup tests with latest testtools.
Testtools has started chunking exceptions (which is perhaps good, perhaps bad) - but we shouldn't depend on the exact behaviour in it for our tests.
Diffstat (limited to 'testrepository/tests')
-rw-r--r--testrepository/tests/test_repository.py14
1 files changed, 10 insertions, 4 deletions
diff --git a/testrepository/tests/test_repository.py b/testrepository/tests/test_repository.py
index e2e5e05..4a8667b 100644
--- a/testrepository/tests/test_repository.py
+++ b/testrepository/tests/test_repository.py
@@ -28,6 +28,7 @@ from subunit import (
from testresources import TestResource
from testtools import (
clone_test_with_new_id,
+ content,
PlaceHolder,
)
import testtools
@@ -103,19 +104,24 @@ class Case(ResourcedTestCase):
def passing(self):
pass
- def failing(self):
- self.fail("oops")
-
def unexpected_success(self):
self.expectFailure("unexpected success", self.assertTrue, True)
+class FailingCase:
+
+ def run(self, result):
+ result.startTest(self)
+ result.addError(
+ self, None, details={'traceback': content.text_content("")})
+ result.stopTest(self)
+
def make_test(id, should_pass):
"""Make a test."""
if should_pass:
case = Case("passing")
else:
- case = Case("failing")
+ case = FailingCase()
return clone_test_with_new_id(case, id)