openapi-core/tests/unit/test_paths.py

22 lines
471 B
Python
Raw Normal View History

2017-09-21 11:51:37 +00:00
import mock
import pytest
from openapi_core.paths import Path
class TestPaths(object):
@pytest.fixture
def path(self):
operations = {
'get': mock.sentinel.get,
'post': mock.sentinel.post,
}
return Path('/path', operations)
@property
def test_iteritems(self, path):
for http_method in path.operations.keys():
assert path[http_method] ==\
path.operations[http_method]