/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 breezy/tests/per_tree/test_transform.py

  • Committer: Jelmer Vernooij
  • Date: 2020-08-06 01:19:45 UTC
  • mto: (7490.40.103 work)
  • mto: This revision was merged to the branch mainline in revision 7521.
  • Revision ID: jelmer@jelmer.uk-20200806011945-6vud9e83lqy3ssh2
q

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
 
47
47
class TestTransformPreview(TestCaseWithTree):
48
48
 
49
 
    def setUp(self):
50
 
        super(TestTransformPreview, self).setUp()
51
 
        if not self.workingtree_format.supports_setting_file_ids:
52
 
            self.skipTest('test not compatible with non-file-id trees yet')
53
 
 
54
49
    def create_tree(self):
55
50
        tree = self.make_branch_and_tree('.')
56
51
        self.build_tree_contents([('a', b'content 1')])
165
160
                   (root_id, root_id), ('a', 'a'), ('file', 'file'),
166
161
                   (False, False), False)
167
162
 
168
 
 
169
163
        self.assertEqual([root_entry, a_entry], list(changes))
170
164
 
171
165
    def test_specific_files(self):
177
171
                   (root_id, root_id), ('a', 'a'), ('file', 'file'),
178
172
                   (False, False), False)
179
173
 
180
 
 
181
174
        self.assertEqual([a_entry], list(changes))
182
175
 
183
176
    def test_want_unversioned(self):