def test_make_thumb_url(self):
     """Test make_thumb_url."""
     input_value = ('My_Example.jpg', 100)
     expected_value = "http://commons.wikimedia.org/w/thumb.php?f=My_Example.jpg&width=100"
     output = thumbnaildownload.make_thumb_url(*input_value)
     self.assertEqual(output, expected_value)
示例#2
0
 def test_make_thumb_url_with_ampersand(self):
     """Test make_thumb_url with an ampersand character."""
     input_value = ('My_Example2&3.jpg', 100)
     expected_value = "http://commons.wikimedia.org/w/index.php?title=Special:FilePath&file=My_Example2%263.jpg&width=100"
     output = thumbnaildownload.make_thumb_url(*input_value)
     self.assertEqual(output, expected_value)
 def test_make_thumb_url_with_ampersand(self):
     """Test make_thumb_url with an ampersand character."""
     input_value = ('My_Example2&3.jpg', 100)
     expected_value = "http://commons.wikimedia.org/w/index.php?title=Special:FilePath&file=My_Example2%263.jpg&width=100"
     output = thumbnaildownload.make_thumb_url(*input_value)
     self.assertEqual(output, expected_value)