Fortschritts-Quest v1.0 — Automatisches RPG mit lokalem LLM
This commit is contained in:
Binary file not shown.
BIN
Binary file not shown.
@@ -0,0 +1,18 @@
|
||||
import os
|
||||
import unittest
|
||||
|
||||
import certifi
|
||||
|
||||
|
||||
class TestCertifi(unittest.TestCase):
|
||||
def test_cabundle_exists(self) -> None:
|
||||
assert os.path.exists(certifi.where())
|
||||
|
||||
def test_read_contents(self) -> None:
|
||||
content = certifi.contents()
|
||||
assert "-----BEGIN CERTIFICATE-----" in content
|
||||
|
||||
def test_py_typed_exists(self) -> None:
|
||||
assert os.path.exists(
|
||||
os.path.join(os.path.dirname(certifi.__file__), 'py.typed')
|
||||
)
|
||||
Reference in New Issue
Block a user