openapi-core/tests/unit/test_schemas.py

21 lines
497 B
Python
Raw Normal View History

2017-09-21 11:51:37 +00:00
import mock
import pytest
from openapi_core.schemas import Schema
class TestSchemas(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_iteritems(self, schema):
for name in schema.properties.keys():
assert schema[name] == schema.properties[name]