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

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 19:09:26 UTC
  • mfrom: (6622.1.36 breezy)
  • Revision ID: jelmer@jelmer.uk-20170521190926-5vtz8xaf0e9ylrpc
Merge rename to breezy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
17
17
 
18
 
"""Black-box tests for bzr export.
 
18
"""Black-box tests for brz export.
19
19
"""
20
20
 
21
21
from StringIO import StringIO
26
26
import zipfile
27
27
 
28
28
 
29
 
from bzrlib import (
 
29
from breezy import (
30
30
    export,
31
31
    )
32
 
from bzrlib.tests import (
 
32
from breezy.tests import (
33
33
    features,
34
34
    TestCaseWithTransport,
35
35
    )
36
 
from bzrlib.tests.matchers import ContainsNoVfsCalls
 
36
from breezy.tests.matchers import ContainsNoVfsCalls
37
37
 
38
38
 
39
39
class TestExport(TestCaseWithTransport):
417
417
        tree.bzrdir.destroy_workingtree()
418
418
        os.chdir('branch')
419
419
        self.run_bzr_error(
420
 
            ['bzr: ERROR: --uncommitted requires a working tree'],
 
420
            ['brz: ERROR: --uncommitted requires a working tree'],
421
421
            'export --uncommitted latest')
422
422
 
423
423
    def test_zip_export_per_file_timestamps(self):