mirror of
https://github.com/correl/openapi-core.git
synced 2024-11-24 19:19:56 +00:00
23 lines
466 B
Python
23 lines
466 B
Python
|
import mock
|
||
|
import pytest
|
||
|
|
||
|
from openapi_core.specs import Spec
|
||
|
|
||
|
|
||
|
class TestSpecs(object):
|
||
|
|
||
|
@pytest.fixture
|
||
|
def spec(self):
|
||
|
servers = []
|
||
|
paths = {
|
||
|
'get': mock.sentinel.get,
|
||
|
'post': mock.sentinel.post,
|
||
|
}
|
||
|
return Spec(servers, paths)
|
||
|
|
||
|
@property
|
||
|
def test_iteritems(self, spec):
|
||
|
for path_name in spec.paths.keys():
|
||
|
assert spec[path_name] ==\
|
||
|
spec.paths[path_name]
|