コード例 #1
0
ファイル: test_util.py プロジェクト: BigYesh/dosage
 def test_normalisation(self):
     # Test URL normalisation.
     self.assertEqual(normaliseURL('http://example.com//bar/baz&baz'),
                      u'http://example.com/bar/baz&baz')
コード例 #2
0
 def test_normalisation(self):
     # Test URL normalisation.
     assert normaliseURL('http://example.com//bar/baz&baz') == \
             u'http://example.com/bar/baz&baz'
コード例 #3
0
 def test_normalisation(self):
     # Test URL normalisation.
     self.assertEqual(normaliseURL('http://example.com//bar/baz&baz'),
                      u'http://example.com/bar/baz&baz')
コード例 #4
0
ファイル: test_util.py プロジェクト: dickloraine/dosage
 def test_normalisation(self):
     # Test URL normalisation.
     assert normaliseURL('http://example.com//bar/baz&baz') == \
             u'http://example.com/bar/baz&baz'