mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 07:11:52 +00:00
Still one test failing when it shouldnt
This commit is contained in:
parent
5a7eda0968
commit
34064972e9
@ -66,7 +66,6 @@ class ImportTest(TestCase):
|
||||
# NOT created Kurt, as the whole point is that he is a guest.
|
||||
|
||||
def setUp(self):
|
||||
lbp.LoadLogbook(self.test_expo)
|
||||
pass
|
||||
|
||||
def tearDown(self):
|
||||
@ -76,6 +75,7 @@ class ImportTest(TestCase):
|
||||
self.assertTrue(self.test_logbook.is_file())
|
||||
|
||||
def test_logbook_parse(self):
|
||||
lbp.LoadLogbook(self.test_expo)
|
||||
|
||||
issues = DataIssue.objects.all()
|
||||
messages = []
|
||||
@ -110,7 +110,11 @@ class ImportTest(TestCase):
|
||||
content = response.content.decode()
|
||||
with open('_test_response.html', 'w') as f:
|
||||
f.write(content)
|
||||
ph = "Smartarse rig first section of new pitches. Second wave arrives and takes over rigging."
|
||||
expected = [
|
||||
"Logbook CUCC expo-test 1986 123 - 123 Wave 1",
|
||||
"Smartarse rig first section of new pitches. Second wave arrives and takes over rigging.",
|
||||
]
|
||||
for ph in expected:
|
||||
phmatch = re.search(ph, content)
|
||||
self.assertIsNotNone(phmatch, "Failed to find expected text: '" + ph + "'")
|
||||
|
||||
@ -136,7 +140,6 @@ class ImportTest(TestCase):
|
||||
phmatch = re.search(ph, content)
|
||||
self.assertIsNotNone(phmatch, "Failed to find expected text: '" + ph + "'")
|
||||
|
||||
|
||||
def test_people(self):
|
||||
# Needs another test with test data
|
||||
response = self.client.get("/people")
|
||||
|
Loading…
Reference in New Issue
Block a user