openapi-core/tests/unit/schema/test_schemas.py
2020-02-03 01:30:25 +00:00

20 lines
508 B
Python

import mock
import pytest
from openapi_core.schema.schemas.models import Schema
class TestSchemaIteritems(object):
@pytest.fixture
def schema(self):
properties = {
'application/json': mock.sentinel.application_json,
'text/csv': mock.sentinel.text_csv,
}
return Schema('object', properties=properties)
@property
def test_valid(self, schema):
for name in schema.properties:
assert schema[name] == schema.properties[name]