Codebase list python-webargs / 55317e4a-35da-40c3-a43f-00208ccf6eb1/upstream tests / test_bottleparser.py
55317e4a-35da-40c3-a43f-00208ccf6eb1/upstream

Tree @55317e4a-35da-40c3-a43f-00208ccf6eb1/upstream (Download .tar.gz)

test_bottleparser.py @55317e4a-35da-40c3-a43f-00208ccf6eb1/upstreamraw · history · blame

import pytest

from .apps.bottle_app import app
from webargs.testing import CommonTestCase


class TestBottleParser(CommonTestCase):
    def create_app(self):
        return app

    @pytest.mark.skip(reason="Parsing vendor media types is not supported in bottle")
    def test_parse_json_with_vendor_media_type(self, testapp):
        pass