mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2025-04-03 09:21:48 +01:00
100th test
This commit is contained in:
parent
8fc25de794
commit
63dde36389
@ -112,7 +112,18 @@ class ImportTest(TestCase):
|
|||||||
ph = f"'fsmartarse'"
|
ph = f"'fsmartarse'"
|
||||||
phmatch = re.search(ph, content)
|
phmatch = re.search(ph, content)
|
||||||
self.assertIsNotNone(phmatch, "Failed to find expected text: '" + ph + "'")
|
self.assertIsNotNone(phmatch, "Failed to find expected text: '" + ph + "'")
|
||||||
|
|
||||||
|
def test_survexfiles(self):
|
||||||
|
# Needs another test with test data
|
||||||
|
response = self.client.get("/survexfile/caves/")
|
||||||
|
self.assertEqual(response.status_code, HTTPStatus.OK)
|
||||||
|
content = response.content.decode()
|
||||||
|
with open('_test_response.html', 'w') as f:
|
||||||
|
f.write(content)
|
||||||
|
ph = f"Caves with subdirectories"
|
||||||
|
phmatch = re.search(ph, content)
|
||||||
|
self.assertIsNotNone(phmatch, "Failed to find expected text: '" + ph + "'")
|
||||||
|
|
||||||
|
|
||||||
def test_people(self):
|
def test_people(self):
|
||||||
# Needs another test with test data
|
# Needs another test with test data
|
||||||
|
Loading…
x
Reference in New Issue
Block a user