bus/tests/test_health.py
Данил Воробьев 9ae41c29a2 initial commit
2024-05-03 12:03:07 +00:00

13 lines
425 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo.tests import HttpCase
class TestBusController(HttpCase):
def test_health(self):
response = self.url_open('/websocket/health')
self.assertEqual(response.status_code, 200)
payload = response.json()
self.assertEqual(payload['status'], 'pass')
self.assertFalse(response.cookies.get('session_id'))