~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_repository.py

  • Committer: Robert Collins
  • Date: 2007-03-05 03:43:56 UTC
  • mfrom: (2312 +trunk)
  • mto: (2255.11.6 dirstate)
  • mto: This revision was merged to the branch mainline in revision 2322.
  • Revision ID: robertc@robertcollins.net-20070305034356-og43j35eg62m952f
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
336
336
        self.assertTrue(S_ISDIR(t.stat('knits').st_mode))
337
337
        self.check_knits(t)
338
338
 
339
 
 
340
339
class InterString(repository.InterRepository):
341
340
    """An inter-repository optimised code path for strings.
342
341
 
474
473
        tree.commit("Another dull commit", rev_id='dull2')
475
474
        revision_tree = tree.branch.repository.revision_tree('dull2')
476
475
        self.assertEqual('dull', revision_tree.inventory.root.revision)
 
476