~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_shared_repository.py

Merge bzr.dev, update to use new hooks.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006-2010 Canonical Ltd
 
1
# Copyright (C) 2006-2011 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
18
18
 
19
19
import os
20
20
 
21
 
from bzrlib import osutils
22
21
from bzrlib.bzrdir import BzrDir, BzrDirMetaFormat1
23
22
import bzrlib.errors as errors
24
23
from bzrlib.tests import TestCaseInTempDir
88
87
        cdir = BzrDir.open('a/c')
89
88
        cdir.open_branch()
90
89
        self.assertRaises(errors.NoRepositoryPresent, cdir.open_repository)
91
 
        self.failUnlessExists('a/c/hello')
 
90
        self.assertPathExists('a/c/hello')
92
91
        cdir.open_workingtree()
93
92
 
94
93
    def test_trees_default(self):
120
119
        # being too low. If rpc_count increases, more network roundtrips have
121
120
        # become necessary for this use case. Please do not adjust this number
122
121
        # upwards without agreement from bzr's network support maintainers.
123
 
        self.assertLength(15, self.hpss_calls)
 
122
        self.assertLength(13, self.hpss_calls)
124
123
 
125
124
    def test_notification_on_branch_from_repository(self):
126
125
        out, err = self.run_bzr("init-repository -q a")
155
154
        # and uses whoami only in a lock file. Without whoami the login name
156
155
        # is used. This test is to ensure that init-repo passes even when whoami
157
156
        # is not available.
158
 
        osutils.set_or_unset_env('EMAIL', None)
159
 
        osutils.set_or_unset_env('BZR_EMAIL', None)
 
157
        self.overrideEnv('EMAIL', None)
 
158
        self.overrideEnv('BZR_EMAIL', None)
160
159
        out, err = self.run_bzr(['init-repo', 'foo'])
161
160
        self.assertEqual(err, '')
162
161
        self.assertTrue(os.path.exists('foo'))