Esempio n. 1
0
 def test_remove_version_from_href(self, fixture, expected):
     actual = common.remove_version_from_href(fixture)
     self.assertEqual(expected, actual)
Esempio n. 2
0
 def test_remove_version_from_href_4(self):
     fixture = "http://www.testsite.com/v1.1/images/v10.5"
     expected = "http://www.testsite.com/images/v10.5"
     actual = common.remove_version_from_href(fixture)
     self.assertEqual(actual, expected)
Esempio n. 3
0
 def test_remove_version_from_href_3(self):
     fixture = 'http://www.testsite.com/v10.10'
     expected = 'http://www.testsite.com'
     actual = common.remove_version_from_href(fixture)
     self.assertEqual(expected, actual)
Esempio n. 4
0
 def test_remove_version_from_href_4(self):
     fixture = 'http://www.testsite.com/v1.1/images/v10.5'
     expected = 'http://www.testsite.com/images/v10.5'
     actual = common.remove_version_from_href(fixture)
     self.assertEqual(expected, actual)
Esempio n. 5
0
 def test_remove_major_version_from_href(self):
     fixture = 'http://www.testsite.com/v1/images'
     expected = 'http://www.testsite.com/images'
     actual = common.remove_version_from_href(fixture)
     self.assertEqual(expected, actual)
Esempio n. 6
0
 def test_remove_version_from_href_3(self):
     fixture = 'http://www.testsite.com/v10.10'
     expected = 'http://www.testsite.com'
     actual = common.remove_version_from_href(fixture)
     self.assertEqual(actual, expected)
Esempio n. 7
0
 def test_remove_major_version_from_href(self):
     fixture = 'http://www.testsite.com/v1/images'
     expected = 'http://www.testsite.com/images'
     actual = common.remove_version_from_href(fixture)
     self.assertEqual(actual, expected)
Esempio n. 8
0
 def test_remove_version_from_href_2(self):
     fixture = 'http://www.testsite.com/v1.1/'
     expected = 'http://www.testsite.com/'
     actual = common.remove_version_from_href(fixture)
     self.assertEqual(actual, expected)
Esempio n. 9
0
 def test_remove_version_from_href(self, fixture, expected):
     actual = common.remove_version_from_href(fixture)
     self.assertEqual(expected, actual)