~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_branch.py

MergeĀ fromĀ remote-is-at-least.

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
from bzrlib.tests import TestCase, TestCaseWithTransport
54
54
from bzrlib.transport import get_transport
55
55
 
 
56
 
56
57
class TestDefaultFormat(TestCase):
57
58
 
58
59
    def test_default_format(self):
294
295
        self.assertEqual(warnings[0], 'Value "new" is masked by "old" from '
295
296
                         'locations.conf')
296
297
 
 
298
 
297
299
class TestBranchReference(TestCaseWithTransport):
298
300
    """Tests for the branch reference facility."""
299
301