/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/test_tree.py

  • Committer: Aaron Bentley
  • Date: 2006-09-21 23:23:03 UTC
  • mto: This revision was merged to the branch mainline in revision 2048.
  • Revision ID: aaron.bentley@utoronto.ca-20060921232303-456dc6bfcc66f870
Got 0.9 bundles working, with root included by changes_from

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
    calls = []
63
63
 
64
64
    def compare(self, want_unchanged=False, specific_files=None,
65
 
        extra_trees=None, require_versioned=False):
 
65
        extra_trees=None, require_versioned=False, include_root=False):
66
66
        self.calls.append(
67
67
            ('compare', self.source, self.target, want_unchanged,
68
 
             specific_files, extra_trees, require_versioned)
 
68
             specific_files, extra_trees, require_versioned, 
 
69
             include_root)
69
70
            )
70
71
    
71
72
    @classmethod
88
89
            # trivial usage
89
90
            tree.changes_from(tree2)
90
91
            # pass in all optional arguments by position
91
 
            tree.changes_from(tree2, 'unchanged', 'specific', 'extra', 'require')
 
92
            tree.changes_from(tree2, 'unchanged', 'specific', 'extra', 
 
93
                              'require', True)
92
94
            # pass in all optional arguments by keyword
93
95
            tree.changes_from(tree2,
94
96
                specific_files='specific',
95
97
                want_unchanged='unchanged',
96
98
                extra_trees='extra',
97
99
                require_versioned='require',
 
100
                include_root=True,
98
101
                )
99
102
        finally:
100
103
            InterTree._optimisers = old_optimisers
101
104
        self.assertEqual(
102
105
            [
103
 
             ('compare', tree2, tree, False, None, None, False),
104
 
             ('compare', tree2, tree, 'unchanged', 'specific', 'extra', 'require'),
105
 
             ('compare', tree2, tree, 'unchanged', 'specific', 'extra', 'require'),
 
106
             ('compare', tree2, tree, False, None, None, False, False),
 
107
             ('compare', tree2, tree, 'unchanged', 'specific', 'extra',
 
108
              'require', True),
 
109
             ('compare', tree2, tree, 'unchanged', 'specific', 'extra', 
 
110
              'require', True),
106
111
            ], RecordingOptimiser.calls)