Beispiel #1
0
 def test_image_with_spaces_on_url(self):
     response = self.fetch(u'/unsafe/image%20space.jpg')
     expect(response.code).to_equal(200)
     expect(response.body).to_be_similar_to(space_image())
Beispiel #2
0
 def test_image_with_spaces_on_url(self):
     response = self.fetch(u'/unsafe/image%20space.jpg')
     expect(response.code).to_equal(200)
     expect(response.body).to_be_similar_to(space_image())
Beispiel #3
0
 async def test_image_with_spaces_on_url(self):
     response = await self.async_fetch("/unsafe/image%20space.jpg")
     expect(response.code).to_equal(200)
     expect(response.body).to_be_similar_to(space_image())