File: test_apispecs.py

package info (click to toggle)
python-flasgger 0.9.7.2~dev2%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 14,684 kB
  • sloc: javascript: 6,384; python: 4,379; makefile: 8; sh: 1
file content (22 lines) | stat: -rwxr-xr-x 574 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/python3
import pytest
import sys
import flasgger
import flask
import json
from collections import defaultdict

def test_client():
    class FakeJson():
        def dumps(self, *args, **kwargs):
            """
            Raises a type error
            """
            raise TypeError
    flask.json._json = FakeJson()
    app = flask.Flask('test-app')
    flasgger.base.jsonify = flask.jsonify
    with app.app_context():
        specs = flasgger.base.APISpecsView(loader=lambda: {'test': 'test'})
        assert specs.get() != None
    flask.json._json = json