1549
1534
def assertFileEqual(self, content, path):
1550
1535
"""Fail if path does not contain 'content'."""
1552
1537
# TODO: jam 20060427 Shouldn't this be 'rb'?
1553
1538
self.assertEqualDiff(content, open(path, 'r').read())
1556
1549
class TestCaseWithTransport(TestCaseInTempDir):
1557
1550
"""A test case that provides get_url and get_readonly_url facilities.