~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_directory_service.py

  • Committer: Vincent Ladeuil
  • Date: 2010-06-17 09:23:19 UTC
  • mfrom: (5301 +trunk)
  • mto: (5247.1.8 first-try)
  • mto: This revision was merged to the branch mainline in revision 5326.
  • Revision ID: v.ladeuil+lp@free.fr-20100617092319-da2bzdtf3j0voynf
Merge bzr.dev into cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
class FooService(object):
29
29
    """A directory service that maps the name to a FILE url"""
30
30
 
31
 
    # eg 'file:///foo' on Linux, or 'file:///C:/foo' on Windows
 
31
    # eg 'file:///foo' on Unix, or 'file:///C:/foo' on Windows
32
32
    base = urlutils.local_path_to_url('/foo')
33
33
 
34
34
    def look_up(self, name, url):