195
195
"""Capture web server log messages for introspection."""
196
196
super(TestHttpFetch, self).log(*args)
197
198
if args[0].startswith("webserver"):
200
201
def test_weaves_are_retrieved_once(self):
201
202
self.build_tree(("source/", "source/file", "target/"))
202
203
branch = Branch.initialize("source")
204
205
branch.working_tree().commit("added file")
205
206
print >>open("source/file", 'w'), "blah"
206
207
branch.working_tree().commit("changed file")