/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to tests/test_versionedfiles.py

Update versionedfiles.

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
 
45
45
 
46
46
class VirtualRevisionTextsTests(TestCase,BasicSvnTextsTests):
 
47
    def _make_parents_provider(self):
 
48
        return self
 
49
 
47
50
    def setUp(self):
48
51
        self.texts = VirtualRevisionTexts(self)
49
52
 
52
55
 
53
56
 
54
57
class VirtualInventoryTextsTests(TestCase,BasicSvnTextsTests):
 
58
    def _make_parents_provider(self):
 
59
        return self
 
60
 
55
61
    def get_inventory_xml(self, key):
56
62
        return "FOO"
57
63
 
66
72
 
67
73
 
68
74
class VirtualSignatureTextsTests(TestCase,BasicSvnTextsTests):
 
75
    def _make_parents_provider(self):
 
76
        return self
 
77
 
69
78
    def setUp(self):
70
79
        self.texts = VirtualSignatureTexts(self)
71
80