~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_branch.py

  • Committer: Aaron Bentley
  • Date: 2008-06-06 16:40:46 UTC
  • mfrom: (3482 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3483.
  • Revision ID: aaron@aaronbentley.com-20080606164046-ghbxplxuhtpcb9iz
Merge with bzr.dev

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