/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 bzrlib/tests/tree_implementations/__init__.py

  • Committer: Alexander Belchenko
  • Date: 2006-09-05 11:52:44 UTC
  • mto: (1711.9.16 jam-integration)
  • mto: This revision was merged to the branch mainline in revision 1984.
  • Revision ID: bialix@ukr.net-20060905115244-f567bf28c5d8d226
tree_implementations tests: build_tree with binary (LF) line-endings

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
    def _make_abc_tree(self, tree):
92
92
        """setup an abc content tree."""
93
93
        files = ['a', 'b/', 'b/c']
94
 
        self.build_tree(files, transport=tree.bzrdir.root_transport)
 
94
        self.build_tree(files, line_endings='binary',
 
95
                        transport=tree.bzrdir.root_transport)
95
96
        tree.add(files, ['a-id', 'b-id', 'c-id'])
96
97
 
97
98
    def get_tree_no_parents_abc_content(self, tree, converter=None):