/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/blackbox/test_branch.py

merge bzr.dev r4054

Show diffs side-by-side

added added

removed removed

Lines of Context:
107
107
        self.assertEqual(strip_trailing_slash(b.repository.base),
108
108
            strip_trailing_slash(local_path_to_url(expected_repo_path)))
109
109
 
 
110
    def test_branch_no_tree(self):
 
111
        self.example_branch('source')
 
112
        self.run_bzr('branch --no-tree source target')
 
113
        self.failIfExists('target/hello')
 
114
        self.failIfExists('target/goodbye')
 
115
 
110
116
 
111
117
class TestBranchStacked(ExternalBase):
112
118
    """Tests for branch --stacked"""