mirror of
https://github.com/enpaul/kodak.git
synced 2024-11-14 10:36:55 +00:00
21 lines
508 B
Python
21 lines
508 B
Python
import importlib.resources
|
|
|
|
import openapi_spec_validator
|
|
import ruamel.yaml
|
|
|
|
from fresnel_lens import __about__
|
|
|
|
|
|
yaml = ruamel.yaml.YAML(typ="safe") # pylint: disable=invalid-name
|
|
|
|
|
|
def test_openapi():
|
|
openapi_spec_validator.validate_spec(
|
|
yaml.load(importlib.resources.read_text("fresnel_lens", "openapi.yaml"))
|
|
)
|
|
|
|
|
|
def test_openapi_version():
|
|
spec = yaml.load(importlib.resources.read_text("fresnel_lens", "openapi.yaml"))
|
|
assert spec["info"]["version"] == __about__.__version__
|