File: test_bottleparser.py

package info (click to toggle)
python-webargs 8.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 696 kB
  • sloc: python: 4,907; makefile: 149
file content (14 lines) | stat: -rw-r--r-- 342 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import pytest

from webargs.testing import CommonTestCase

from .apps.bottle_app import app


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