~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_chk_map.py

  • Committer: Aaron Bentley
  • Date: 2009-05-20 10:41:50 UTC
  • mfrom: (4373 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4374.
  • Revision ID: aaron@aaronbentley.com-20090520104150-d5s3mrl4uyc0udty
Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
    def test_not_a_prefix(self):
54
54
        self.assertCommonPrefix('b', 'begin', 'b')
55
55
 
 
56
    def test_empty(self):
 
57
        self.assertCommonPrefix('', '', 'end')
 
58
        self.assertCommonPrefix('', 'begin', '')
 
59
        self.assertCommonPrefix('', '', '')
 
60
 
56
61
 
57
62
class TestCaseWithStore(tests.TestCaseWithTransport):
58
63