/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/git/tests/test_urls.py

  • Committer: Jelmer Vernooij
  • Date: 2020-08-05 20:34:11 UTC
  • mfrom: (7490.40.87 work)
  • mto: (7490.40.103 work)
  • mto: This revision was merged to the branch mainline in revision 7521.
  • Revision ID: jelmer@jelmer.uk-20200805203411-cap9gp8vuwnz5lt7
Merge lp:brz/3.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
                'git+ssh://user@foo/bar/path'),
42
42
            ('git+ssh://user@foo/bar/path'))
43
43
 
 
44
    def test_just_ssh(self):
 
45
        self.assertEqual(
 
46
            git_url_to_bzr_url(
 
47
                'ssh://user@foo/bar/path'),
 
48
            ('git+ssh://user@foo/bar/path'))
 
49
 
44
50
    def test_path(self):
45
51
        self.assertEqual(git_url_to_bzr_url('/bar/path'), ('/bar/path'))
46
52