/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/tests/test_urlutils.py

  • Committer: Vincent Ladeuil
  • Date: 2019-03-06 14:03:19 UTC
  • mfrom: (7290.1.15 work)
  • mto: This revision was merged to the branch mainline in revision 7295.
  • Revision ID: v.ladeuil+brz@free.fr-20190306140319-zgjegynpjv3vv0jg
Merge 3.0 into trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
599
599
        self.assertEqual(("foo/base,key1=val1/other/elements",
600
600
                          {"key2": "val2"}), split_segment_parameters(
601
601
            "foo/base,key1=val1/other/elements,key2=val2"))
 
602
        self.assertRaises(
 
603
            urlutils.InvalidURL, split_segment_parameters,
 
604
            "foo/base,key1")
602
605
        # TODO: Check full URLs as well as relative references
603
606
 
604
607
    def test_win32_strip_local_trailing_slash(self):