Skipping certain tests until session is restored.

This commit is contained in:
Jeff Baskin 2025-03-26 17:55:08 -04:00
parent bba615e420
commit 9615b49da2

View File

@ -51,6 +51,7 @@ class BootUpTC(MTTClusterTC):
await self.run_tests("/", tests)
@skip("Code not availaable yet.")
async def test_session_id_is_random(self):
"""Is the session id random?"""
await self.create_server()
@ -62,6 +63,7 @@ class BootUpTC(MTTClusterTC):
result2 = response.cookies[SESSION_KEY].value
self.assertNotEqual(result1, result2, "Session ids should be unique.")
@skip("Code not availaable yet.")
async def test_session_does_not_reset_after_connection(self):
"""Does the session id remain constant during the session"""
await self.create_server()