File: test_typing_utils.py

package info (click to toggle)
python-odmantic 1.0.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 1,640 kB
  • sloc: python: 8,547; sh: 37; makefile: 34; xml: 13; javascript: 3
file content (19 lines) | stat: -rw-r--r-- 605 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from typing import Dict, List, Set, Tuple

from typing_utils import are_generics_equal


def test_are_generics_equal_two_different_origin():
    assert not are_generics_equal(List[str], Set[str])


def test_are_generics_equal_different_arg_count():
    assert not are_generics_equal(Tuple[str], Tuple[str, str])
    assert not are_generics_equal(Tuple[str], Tuple[str, ...])


def test_are_generics_equal_different_args():
    assert not are_generics_equal(Tuple[str, int], Tuple[int, str])
    assert not are_generics_equal(
        Tuple[str, int, Dict[int, str]], Tuple[str, int, Dict[int, int]]
    )