Major fixes and new features
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
12
venv/lib/python3.12/site-packages/mypy/test/teststubinfo.py
Normal file
12
venv/lib/python3.12/site-packages/mypy/test/teststubinfo.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from __future__ import annotations
|
||||
|
||||
import unittest
|
||||
|
||||
from mypy.stubinfo import is_legacy_bundled_package
|
||||
|
||||
|
||||
class TestStubInfo(unittest.TestCase):
|
||||
def test_is_legacy_bundled_packages(self) -> None:
|
||||
assert not is_legacy_bundled_package("foobar_asdf")
|
||||
assert is_legacy_bundled_package("pycurl")
|
||||
assert is_legacy_bundled_package("dataclasses")
|
||||
Reference in New Issue
Block a user