mirror of
https://github.com/correl/openapi-core.git
synced 2024-11-24 11:09:54 +00:00
24 lines
548 B
Python
24 lines
548 B
Python
from openapi_core.templating.util import search
|
|
|
|
|
|
class TestSearch:
|
|
|
|
def test_endswith(self):
|
|
path_patter = '/{test}/test'
|
|
full_url_pattern = '/test1/test/test2/test'
|
|
|
|
result = search(path_patter, full_url_pattern)
|
|
|
|
assert result.named == {
|
|
'test': 'test2',
|
|
}
|
|
|
|
def test_exact(self):
|
|
path_patter = '/{test}/test'
|
|
full_url_pattern = '/test/test'
|
|
|
|
result = search(path_patter, full_url_pattern)
|
|
|
|
assert result.named == {
|
|
'test': 'test',
|
|
}
|