File: test_utils.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 (16 lines) | stat: -rw-r--r-- 378 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from flasgger.utils import is_openapi3


def test_isopenapi_3_false():
    assert not is_openapi3(None)
    assert not is_openapi3("")
    assert not is_openapi3(5)
    assert not is_openapi3("2.0")
    assert not is_openapi3("1")


def test_isopenapi_3_true():
    assert is_openapi3("3")
    assert is_openapi3("3.3.3.3")
    assert is_openapi3(3)
    assert is_openapi3(3.0)