Coverage for fake_kubernetes_client/__init__.py: 100%
10 statements
« prev ^ index » next coverage.py v7.10.1, created at 2025-07-29 12:31 +0300
« prev ^ index » next coverage.py v7.10.1, created at 2025-07-29 12:31 +0300
1"""Fake Kubernetes client for testing"""
3from fake_kubernetes_client.configuration import FakeConfiguration
4from fake_kubernetes_client.dynamic_client import FakeDynamicClient
5from fake_kubernetes_client.exceptions import (
6 ApiException,
7 ConflictError,
8 NotFoundError,
9)
10from fake_kubernetes_client.kubernetes_client import FakeKubernetesClient
11from fake_kubernetes_client.resource_field import FakeResourceField
12from fake_kubernetes_client.resource_instance import FakeResourceInstance
13from fake_kubernetes_client.resource_manager import FakeResourceManager
14from fake_kubernetes_client.resource_registry import FakeResourceRegistry
15from fake_kubernetes_client.resource_storage import FakeResourceStorage
17__all__ = [
18 "FakeConfiguration",
19 "FakeDynamicClient",
20 "FakeKubernetesClient",
21 "FakeResourceField",
22 "FakeResourceInstance",
23 "FakeResourceRegistry",
24 "FakeResourceStorage",
25 "FakeResourceManager",
26 "ApiException",
27 "NotFoundError",
28 "ConflictError",
29]