~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_directory_service.py

  • Committer: Alexander Belchenko
  • Date: 2010-06-17 08:53:15 UTC
  • mfrom: (5300 +trunk)
  • mto: (5303.2.1 integration)
  • mto: This revision was merged to the branch mainline in revision 5305.
  • Revision ID: bialix@ukr.net-20100617085315-hr8186zck57zn35s
merge bzr.dev; fix NEWS

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):