mirror of
https://github.com/haiwen/seahub.git
synced 2025-04-27 11:01:14 +00:00
8 lines
198 B
Python
8 lines
198 B
Python
from seahub.test_utils import BaseTestCase
|
|
|
|
|
|
class PingTest(BaseTestCase):
|
|
def test_can_ping(self):
|
|
resp = self.client.get('/api2/ping/')
|
|
self.assertEqual(200, resp.status_code)
|