Exemplo n.º 1
0
 def test_document_export(self, get_attributes_html):
     get_attributes_html.return_value = '<p>mock</p>'
     trail = TrailFactory()
     self.login()
     with open(trail.get_map_image_path(), 'w') as f:
         f.write('***' * 1000)
     response = self.client.get(trail.get_document_url())
     self.assertEqual(response.status_code, 200)
Exemplo n.º 2
0
 def test_document_export(self, get_attributes_html):
     get_attributes_html.return_value = '<p>mock</p>'
     self.login()
     trail = TrailFactory()
     with open(trail.get_map_image_path(), 'w') as f:
         f.write('***' * 1000)
     response = self.client.get(trail.get_document_url())
     self.assertEqual(response.status_code, 200)