Codebase list python-webargs / master tests / test_bottleparser.py
master

Tree @master (Download .tar.gz)

test_bottleparser.py @masterraw · 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