mirror of
https://github.com/VinylDNS/vinyldns
synced 2025-08-22 10:10:12 +00:00
14 lines
267 B
Python
14 lines
267 B
Python
|
import pytest
|
||
|
|
||
|
from hamcrest import *
|
||
|
from vinyldns_python import VinylDNSClient
|
||
|
|
||
|
|
||
|
def test_health(shared_zone_test_context):
|
||
|
"""
|
||
|
Tests that the health check endpoint works
|
||
|
"""
|
||
|
client = shared_zone_test_context.ok_vinyldns_client
|
||
|
client.health()
|
||
|
|