def test_success():
    path_names = [
        '/pet',
        '/pet/findByStatus',
        '/pet/findByTags',
        '/pet/{petId}']
    for path_name in path_names:
        assert 'pet' == convert_path_to_resource(path_name)
Example #2
0
def test_success():
    path_names = [
        '/pet',
        '/pet/findByStatus',
        '/pet/findByTags',
        '/pet/{petId}',
    ]
    for path_name in path_names:
        assert 'pet' == convert_path_to_resource(path_name)
def test_fails_on_slash():
    with pytest.raises(SwaggerMappingError) as excinfo:
        convert_path_to_resource('/')
    assert 'name from path' in str(excinfo.value)
Example #4
0
def test_fails_on_slash():
    with pytest.raises(SwaggerMappingError) as excinfo:
        convert_path_to_resource('/')
    assert 'name from path' in str(excinfo.value)