~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_urlutils.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-04-26 15:39:04 UTC
  • mfrom: (2456.2.6 rename_iter_changes_109993)
  • Revision ID: pqm@pqm.ubuntu.com-20070426153904-l91p9ybsqpxt2vyv
(John Arbash Meinel) Fix bug #109993 by fixing _iter_changes to not sync an on-disk file with an 'absent' dirblock record.

Show diffs side-by-side

added added

removed removed

Lines of Context:
570
570
        #   u'/dod\xe9' => '/dod\xc3\xa9'
571
571
        url = urlutils.local_path_to_url('.')
572
572
        self.assertEndsWith(url, '/dod%C3%A9')
573
 
 
574
 
 
575
 
class TestDeriveToLocation(TestCase):
576
 
    """Test that the mapping of FROM_LOCATION to TO_LOCATION works."""
577
 
 
578
 
    def test_to_locations_derived_from_paths(self):
579
 
        derive = urlutils.derive_to_location
580
 
        self.assertEqual("bar", derive("bar"))
581
 
        self.assertEqual("bar", derive("../bar"))
582
 
        self.assertEqual("bar", derive("/foo/bar"))
583
 
        self.assertEqual("bar", derive("c:/foo/bar"))
584
 
        self.assertEqual("bar", derive("c:bar"))
585
 
 
586
 
    def test_to_locations_derived_from_urls(self):
587
 
        derive = urlutils.derive_to_location
588
 
        self.assertEqual("bar", derive("http://foo/bar"))
589
 
        self.assertEqual("bar", derive("bzr+ssh://foo/bar"))
590
 
        self.assertEqual("foo-bar", derive("lp:foo-bar"))