orionis 0.305.0__py3-none-any.whl → 0.307.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. orionis/metadata/framework.py +1 -1
  2. orionis/services/introspection/abstract/contracts/reflection_abstract.py +1 -1
  3. orionis/services/introspection/abstract/reflection_abstract.py +1 -1
  4. orionis/services/introspection/concretes/contracts/reflection_concrete.py +2 -2
  5. orionis/services/introspection/concretes/reflection_concrete.py +2 -4
  6. orionis/services/introspection/instances/contracts/reflection_instance.py +2 -2
  7. orionis/services/introspection/instances/reflection_instance.py +2 -2
  8. orionis/{services → support}/standard/std.py +2 -2
  9. {orionis-0.305.0.dist-info → orionis-0.307.0.dist-info}/METADATA +1 -1
  10. {orionis-0.305.0.dist-info → orionis-0.307.0.dist-info}/RECORD +33 -38
  11. tests/{support/inspection/fakes → services/inspection/reflection/mock}/fake_reflect_instance.py +18 -3
  12. tests/services/inspection/reflection/test_reflection_abstract.py +588 -0
  13. tests/services/inspection/reflection/test_reflection_concrete.py +842 -0
  14. tests/services/inspection/reflection/test_reflection_instance.py +888 -0
  15. tests/services/inspection/reflection/test_reflection_module.py +397 -0
  16. tests/{services → support}/standard/test_services_std.py +3 -3
  17. tests/{services → support}/wrapper/test_services_wrapper_docdict.py +2 -2
  18. tests/support/inspection/fakes/fake_reflect_abstract.py +0 -276
  19. tests/support/inspection/fakes/fake_reflection_concrete.py +0 -44
  20. tests/support/inspection/fakes/fake_reflection_concrete_with_abstract.py +0 -78
  21. tests/support/inspection/fakes/fake_reflection_instance_with_abstract.py +0 -45
  22. tests/support/inspection/test_reflect_abstract.py +0 -334
  23. tests/support/inspection/test_reflect_instance.py +0 -288
  24. tests/support/inspection/test_reflection_concrete.py +0 -142
  25. tests/support/inspection/test_reflection_concrete_with_abstract.py +0 -87
  26. tests/support/inspection/test_reflection_instance_with_abstract.py +0 -79
  27. /orionis/{services → support}/standard/__init__.py +0 -0
  28. /orionis/{services → support}/standard/contracts/__init__.py +0 -0
  29. /orionis/{services → support}/standard/contracts/std.py +0 -0
  30. /orionis/{services → support}/standard/exceptions/__init__.py +0 -0
  31. /orionis/{services → support}/standard/exceptions/std_value_exception.py +0 -0
  32. /orionis/{services → support}/wrapper/__init__.py +0 -0
  33. /orionis/{services → support}/wrapper/dicts/__init__.py +0 -0
  34. /orionis/{services → support}/wrapper/dicts/dot_dict.py +0 -0
  35. {orionis-0.305.0.dist-info → orionis-0.307.0.dist-info}/WHEEL +0 -0
  36. {orionis-0.305.0.dist-info → orionis-0.307.0.dist-info}/licenses/LICENCE +0 -0
  37. {orionis-0.305.0.dist-info → orionis-0.307.0.dist-info}/top_level.txt +0 -0
  38. {orionis-0.305.0.dist-info → orionis-0.307.0.dist-info}/zip-safe +0 -0
  39. /tests/services/{standard → inspection/reflection}/__init__.py +0 -0
  40. /tests/services/{wrapper → inspection/reflection/mock}/__init__.py +0 -0
  41. /tests/support/{inspection → standard}/__init__.py +0 -0
  42. /tests/support/{inspection/fakes → wrapper}/__init__.py +0 -0
@@ -5,7 +5,7 @@
5
5
  NAME = "orionis"
6
6
 
7
7
  # Current version of the framework
8
- VERSION = "0.305.0"
8
+ VERSION = "0.307.0"
9
9
 
10
10
  # Full name of the author or maintainer of the project
11
11
  AUTHOR = "Raul Mauricio Uñate Castro"
@@ -838,7 +838,7 @@ class IReflectionAbstract(ABC):
838
838
  pass
839
839
 
840
840
  @abstractmethod
841
- def getPropiertyDocstring(self, name: str) -> str:
841
+ def getPropertyDocstring(self, name: str) -> str:
842
842
  """
843
843
  Get the docstring of a property.
844
844
 
@@ -1190,7 +1190,7 @@ class ReflectionAbstract(IReflectionAbstract):
1190
1190
 
1191
1191
  return inspect.signature(prop.fget)
1192
1192
 
1193
- def getPropiertyDocstring(self, name: str) -> str:
1193
+ def getPropertyDocstring(self, name: str) -> str:
1194
1194
  """
1195
1195
  Get the docstring of a property.
1196
1196
 
@@ -886,7 +886,7 @@ class IReflectionConcrete(ABC):
886
886
  pass
887
887
 
888
888
  @abstractmethod
889
- def getPropierty(self, name: str) -> Any:
889
+ def getProperty(self, name: str) -> Any:
890
890
  """
891
891
  Get a specific property of the instance.
892
892
 
@@ -930,7 +930,7 @@ class IReflectionConcrete(ABC):
930
930
  pass
931
931
 
932
932
  @abstractmethod
933
- def getPropiertyDocstring(self, name: str) -> str:
933
+ def getPropertyDocstring(self, name: str) -> str:
934
934
  """
935
935
  Get the docstring of a property.
936
936
 
@@ -1300,7 +1300,7 @@ class ReflectionConcrete(IReflectionConcrete):
1300
1300
  properties.append(name.replace(f"_{self.getClassName()}", ""))
1301
1301
  return properties
1302
1302
 
1303
- def getPropierty(self, name: str) -> Any:
1303
+ def getProperty(self, name: str) -> Any:
1304
1304
  """
1305
1305
  Get a specific property of the instance.
1306
1306
 
@@ -1366,7 +1366,7 @@ class ReflectionConcrete(IReflectionConcrete):
1366
1366
 
1367
1367
  return inspect.signature(prop.fget)
1368
1368
 
1369
- def getPropiertyDocstring(self, name: str) -> str:
1369
+ def getPropertyDocstring(self, name: str) -> str:
1370
1370
  """
1371
1371
  Get the docstring of a property.
1372
1372
 
@@ -1403,8 +1403,6 @@ class ReflectionConcrete(IReflectionConcrete):
1403
1403
  """
1404
1404
  Get the resolved and unresolved dependencies from the constructor of the instance's class.
1405
1405
 
1406
-
1407
-
1408
1406
  Returns
1409
1407
  -------
1410
1408
  ClassDependency
@@ -780,7 +780,7 @@ class IReflectionInstance(ABC):
780
780
  pass
781
781
 
782
782
  @abstractmethod
783
- def getPropierty(self, name: str) -> Any:
783
+ def getProperty(self, name: str) -> Any:
784
784
  """
785
785
  Get a specific property of the instance.
786
786
 
@@ -819,7 +819,7 @@ class IReflectionInstance(ABC):
819
819
  pass
820
820
 
821
821
  @abstractmethod
822
- def getPropiertyDocstring(self, name: str) -> str:
822
+ def getPropertyDocstring(self, name: str) -> str:
823
823
  """
824
824
  Get the docstring of a property.
825
825
 
@@ -1369,7 +1369,7 @@ class ReflectionInstance(IReflectionInstance):
1369
1369
  properties.append(name.replace(f"_{self.getClassName()}", ""))
1370
1370
  return properties
1371
1371
 
1372
- def getPropierty(self, name: str) -> Any:
1372
+ def getProperty(self, name: str) -> Any:
1373
1373
  """
1374
1374
  Get a specific property of the instance.
1375
1375
 
@@ -1430,7 +1430,7 @@ class ReflectionInstance(IReflectionInstance):
1430
1430
  # If the property does not exist, raise an error
1431
1431
  raise ReflectionAttributeError(f"Property '{original_name}' does not exist on '{self.getClassName()}'.")
1432
1432
 
1433
- def getPropiertyDocstring(self, name: str) -> str:
1433
+ def getPropertyDocstring(self, name: str) -> str:
1434
1434
  """
1435
1435
  Get the docstring of a property.
1436
1436
 
@@ -1,5 +1,5 @@
1
- from orionis.services.standard.contracts.std import IStdClass
2
- from orionis.services.standard.exceptions.std_value_exception import OrionisStdValueException
1
+ from orionis.support.standard.contracts.std import IStdClass
2
+ from orionis.support.standard.exceptions.std_value_exception import OrionisStdValueException
3
3
 
4
4
  class StdClass(IStdClass):
5
5
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: orionis
3
- Version: 0.305.0
3
+ Version: 0.307.0
4
4
  Summary: Orionis Framework – Elegant, Fast, and Powerful.
5
5
  Home-page: https://github.com/orionis-framework/framework
6
6
  Author: Raul Mauricio Uñate Castro
@@ -226,7 +226,7 @@ orionis/foundation/config/testing/entities/testing.py,sha256=AuhPU9O15Aeqs8jQVHW
226
226
  orionis/foundation/config/testing/enums/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
227
227
  orionis/foundation/config/testing/enums/test_mode.py,sha256=IbFpauu7J-iSAfmC8jDbmTEYl8eZr-AexL-lyOh8_74,337
228
228
  orionis/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
229
- orionis/metadata/framework.py,sha256=pNDQY58vhSufu48I0aurRcZ8rtwladNjfp7t_51X3E4,4960
229
+ orionis/metadata/framework.py,sha256=zkHQLUcwjYAKmqEFv4iGmuMVGTb826f-ZGnE2-5urDA,4960
230
230
  orionis/metadata/package.py,sha256=tqLfBRo-w1j_GN4xvzUNFyweWYFS-qhSgAEc-AmCH1M,5452
231
231
  orionis/patterns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
232
232
  orionis/patterns/singleton/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -251,13 +251,13 @@ orionis/services/environment/exceptions/environment_value_exception.py,sha256=zl
251
251
  orionis/services/introspection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
252
252
  orionis/services/introspection/reflection.py,sha256=AI5ZMv9kHCLOQe9lL_G7wAeY3cPLKZ1FMYqIhU0yS-M,2972
253
253
  orionis/services/introspection/abstract/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
254
- orionis/services/introspection/abstract/reflection_abstract.py,sha256=OwVPnVaRr6iXXluZgDIhHoGIQrIti25FY55gXr2VdgI,42737
254
+ orionis/services/introspection/abstract/reflection_abstract.py,sha256=Mglhry_0sd7NyjV2tp7W9SBhBaLsdzULHskkRM0QlY0,42736
255
255
  orionis/services/introspection/abstract/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
256
- orionis/services/introspection/abstract/contracts/reflection_abstract.py,sha256=MuVZ-BaDI0ilH6ENiVn6nRqx_kEdIp7vxwtxSIzfMFE,22371
256
+ orionis/services/introspection/abstract/contracts/reflection_abstract.py,sha256=-ugpFcAkGTlk0Md5ft8NrvupnlfVji8QZjGYqWBxqeY,22370
257
257
  orionis/services/introspection/concretes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
258
- orionis/services/introspection/concretes/reflection_concrete.py,sha256=oji40QcV-i9IHdFhlqrMsxmOGmlIrpnz4Nix3ikz7Bg,49771
258
+ orionis/services/introspection/concretes/reflection_concrete.py,sha256=BoiBnvFFNESOGB_nNbIcaamFRf3HM-Z0-uNfX4j_VT8,49765
259
259
  orionis/services/introspection/concretes/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
260
- orionis/services/introspection/concretes/contracts/reflection_concrete.py,sha256=JiCgsmx-9M2a3PpAUOLeq2c0EkG231FArKYs54SeuRc,25068
260
+ orionis/services/introspection/concretes/contracts/reflection_concrete.py,sha256=9ZQjJpZwvlqpePErRhMGBZL2yeRtchWj0SBs1JDW-F4,25066
261
261
  orionis/services/introspection/dependencies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
262
262
  orionis/services/introspection/dependencies/reflect_dependencies.py,sha256=HL2cX7_SSIWeKxzBDUMEdmfjetrZmMfPZvqM34DvJMg,7145
263
263
  orionis/services/introspection/dependencies/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -271,9 +271,9 @@ orionis/services/introspection/exceptions/reflection_attribute_error.py,sha256=7
271
271
  orionis/services/introspection/exceptions/reflection_type_error.py,sha256=6BizQOgt50qlLPDBvBJfUWgAwAr_8GAk1FhownPs-8A,747
272
272
  orionis/services/introspection/exceptions/reflection_value_error.py,sha256=X38649JMKSPbdpa1lmo69RhhTATH8ykTF-UAqe7IAaU,748
273
273
  orionis/services/introspection/instances/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
274
- orionis/services/introspection/instances/reflection_instance.py,sha256=deqQpeAZquij7tMgcyuZaK09YGLkQb95OiZx5zEWiwk,51941
274
+ orionis/services/introspection/instances/reflection_instance.py,sha256=STdZHw7mSdm4zhKe5MvmPnifOlGv1km7aqY4RSodORg,51939
275
275
  orionis/services/introspection/instances/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
276
- orionis/services/introspection/instances/contracts/reflection_instance.py,sha256=zc-uOHDixR4Wg2PwF4mX9lpl-AGMKtMvJUN7_Pixr2Q,20938
276
+ orionis/services/introspection/instances/contracts/reflection_instance.py,sha256=D9sH-uOSZ_E7luAfbjI_ML6kfxuO5MtvLk6037iQJ7o,20936
277
277
  orionis/services/introspection/modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
278
278
  orionis/services/introspection/modules/reflection_module.py,sha256=8Go5U22E33tZa93Qx5_zswy8Hoxotsro1s_7YKeXbKI,15640
279
279
  orionis/services/introspection/modules/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -291,12 +291,6 @@ orionis/services/paths/contracts/resolver.py,sha256=v7uTgByE2nQS2ZM_b1rtMzY6HH03
291
291
  orionis/services/paths/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
292
292
  orionis/services/paths/exceptions/not_found_exceptions.py,sha256=J3BXNqMjt9NFH2yYpxlE2gIeuV6es5GEgNatT5PYKXc,814
293
293
  orionis/services/paths/exceptions/path_value_exceptions.py,sha256=kQnUPBjfHgRyjGfrOSFKa1DPluMFJQv-1nUe_f76lUs,879
294
- orionis/services/standard/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
295
- orionis/services/standard/std.py,sha256=nmZh0nQecPwyB9Pk09OUGQhTnVgXGRPA4AYyybSt-W8,3701
296
- orionis/services/standard/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
297
- orionis/services/standard/contracts/std.py,sha256=w4F0fIHIOhCPPiBgTLIIWR9EFdjeTjLsDktiLaUgmj8,3108
298
- orionis/services/standard/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
299
- orionis/services/standard/exceptions/std_value_exception.py,sha256=PPrh58fyaARULFo7NUn36oLWF3ac3N5Bkc2pCHKpQVc,681
300
294
  orionis/services/system/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
301
295
  orionis/services/system/imports.py,sha256=5j2Rkf6vMLnCQjqcox4-0y0tZoxgPfv7EP8eruG7vnA,4990
302
296
  orionis/services/system/runtime_imports.py,sha256=eWp_MmrvxWHl-lsNO0M5FC9OsCcY1BXsiJTlPk0cfRU,2550
@@ -304,10 +298,16 @@ orionis/services/system/workers.py,sha256=VB0BBrx3ks0vqc0-aPLQj2VK4cO7s_44YhJOKY
304
298
  orionis/services/system/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
305
299
  orionis/services/system/contracts/imports.py,sha256=nE2fDS2bDbwltHCmzOsEMhUymYy092zoGX-NOXLE4J4,1167
306
300
  orionis/services/system/contracts/workers.py,sha256=aZfQlij6mkPM2TcodDai7JYpTFNKL4YFAEj8Bd9Y4nw,707
307
- orionis/services/wrapper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
308
- orionis/services/wrapper/dicts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
309
- orionis/services/wrapper/dicts/dot_dict.py,sha256=VdAUH-DO6y86pl_9N6v-vU9mdLraWh5HjVzI5iC1dMs,5295
310
301
  orionis/support/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
302
+ orionis/support/standard/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
303
+ orionis/support/standard/std.py,sha256=_EtIoAxKImQto6Le7RYzuEI6wh2PuoF5C50Rrhrv5Zw,3699
304
+ orionis/support/standard/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
305
+ orionis/support/standard/contracts/std.py,sha256=w4F0fIHIOhCPPiBgTLIIWR9EFdjeTjLsDktiLaUgmj8,3108
306
+ orionis/support/standard/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
307
+ orionis/support/standard/exceptions/std_value_exception.py,sha256=PPrh58fyaARULFo7NUn36oLWF3ac3N5Bkc2pCHKpQVc,681
308
+ orionis/support/wrapper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
309
+ orionis/support/wrapper/dicts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
310
+ orionis/support/wrapper/dicts/dot_dict.py,sha256=VdAUH-DO6y86pl_9N6v-vU9mdLraWh5HjVzI5iC1dMs,5295
311
311
  orionis/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
312
312
  orionis/test/test_suite.py,sha256=Aqjfh_HcuudckUbM5aK7hjH_kE-Rwr_8NyGaioWuQZw,4941
313
313
  orionis/test/cases/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -339,7 +339,7 @@ orionis/test/suite/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
339
339
  orionis/test/suite/contracts/test_unit.py,sha256=YWpzXhjD-f-IGncKkGyE9C7tYCFbt9mxZPw1O_d5HOE,7532
340
340
  orionis/test/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
341
341
  orionis/test/view/render.py,sha256=jXZkbITBknbUwm_mD8bcTiwLDvsFkrO9qrf0ZgPwqxc,4903
342
- orionis-0.305.0.dist-info/licenses/LICENCE,sha256=-_4cF2EBKuYVS_SQpy1uapq0oJPUU1vl_RUWSy2jJTo,1111
342
+ orionis-0.307.0.dist-info/licenses/LICENCE,sha256=-_4cF2EBKuYVS_SQpy1uapq0oJPUU1vl_RUWSy2jJTo,1111
343
343
  tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
344
344
  tests/example/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
345
345
  tests/example/test_example.py,sha256=kvWgiW3ADEZf718dGsMPtDh_rmOSx1ypEInKm7_6ZPQ,601
@@ -414,37 +414,32 @@ tests/services/inspection/dependencies/mocks/__init__.py,sha256=47DEQpj8HBSa-_TI
414
414
  tests/services/inspection/dependencies/mocks/mock_user.py,sha256=RxATxe0-Vm4HfX5jKz9Tny42E2fmrdtEN6ZEntbqRL8,912
415
415
  tests/services/inspection/dependencies/mocks/mock_user_controller.py,sha256=P3sOUXVZ55auudwiNtvNCEQuTz0cgAZjvhicLZ4xaz4,1208
416
416
  tests/services/inspection/dependencies/mocks/mock_users_permissions.py,sha256=oENXbS2qmQUudYSmnhB8fgHBqXZdbplplB-Y2nbx4hw,1388
417
+ tests/services/inspection/reflection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
418
+ tests/services/inspection/reflection/test_reflection_abstract.py,sha256=TfQv4-f-c9VVhOzd5077Bq8FEWNzMGzap2s-vIP4W9Q,27859
419
+ tests/services/inspection/reflection/test_reflection_concrete.py,sha256=5-iQh1whfpBa47jBWwtg-MIk6ysg92my5J9JdrTBm5E,44622
420
+ tests/services/inspection/reflection/test_reflection_instance.py,sha256=ZCFTLY_KtLAIq58PuDWak-T1c2PcCKiwTOdI9EDubww,46281
421
+ tests/services/inspection/reflection/test_reflection_module.py,sha256=Cl-3kWoJMQ2ufOO4VP6M28Tk6kmY4OhVEoW_b0wqw7Y,19849
422
+ tests/services/inspection/reflection/mock/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
423
+ tests/services/inspection/reflection/mock/fake_reflect_instance.py,sha256=iqWoT6tNym3OijK0wcF0iKMp3HTlq5kAoztzC4fdTlM,18595
417
424
  tests/services/parsers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
418
425
  tests/services/parsers/test_services_parser_exceptions.py,sha256=fCi_nUsXSh80r7HzQibXbUuYMpqjBefsP-QPF76MLfM,2650
419
426
  tests/services/parsers/mocks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
420
427
  tests/services/parsers/mocks/mock_custom_error.py,sha256=LWgjeog2rpmfw6j7Bgzvfvmeby8uSBuB1B3d_DgRcFQ,752
421
428
  tests/services/path/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
422
429
  tests/services/path/test_services_resolver.py,sha256=ny6vyx_psF9iWXyMhqI95SJs84_dD1NIOXt0k1MfBQA,3902
423
- tests/services/standard/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
424
- tests/services/standard/test_services_std.py,sha256=ChEUcUNSSrKEaLczoDGphHlUhTnaXknzMBMVLNRgbG0,5518
425
430
  tests/services/system/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
426
431
  tests/services/system/test_services_system_imports.py,sha256=dqNFspZCVHIupSV9u7mGCUlyJImmExURp-p0PhwpvRI,2945
427
432
  tests/services/system/test_services_system_workers.py,sha256=g9Nq0V-xmrLAl089Nz3t7xEjeSJxNaplAt_KgzMqJ5o,3002
428
- tests/services/wrapper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
429
- tests/services/wrapper/test_services_wrapper_docdict.py,sha256=EhV6uIp0OX5t1YZjVAtZlASMgm576CQjwNHVhrvxU1w,4986
430
433
  tests/support/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
431
- tests/support/inspection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
432
- tests/support/inspection/test_reflect_abstract.py,sha256=CkQP2neysJGaQuskvsHCnBurlogFF5hH0AR1EGpP9BE,13448
433
- tests/support/inspection/test_reflect_instance.py,sha256=RsBilqAZMRYIrhp7pOY7AJMkga-eV5NWQkIWrSUJ9VY,14037
434
- tests/support/inspection/test_reflection_concrete.py,sha256=lqmcvaJr-K_u60jlFtk4EFOyPFGUyrLveKR-u78hxX0,6751
435
- tests/support/inspection/test_reflection_concrete_with_abstract.py,sha256=Qzd87JxKDXPpItNg_cVrxinN42wNfaBllucnhH30gXs,4655
436
- tests/support/inspection/test_reflection_instance_with_abstract.py,sha256=L3nQy2l95yEIyvAHErqxGRVVF5x8YkyM82uGm0wUlxk,4064
437
- tests/support/inspection/fakes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
438
- tests/support/inspection/fakes/fake_reflect_abstract.py,sha256=woE15uLmoD3fLgPBMjNh5XkwvMDmW2VDbADYPIS_88o,6387
439
- tests/support/inspection/fakes/fake_reflect_instance.py,sha256=WZsXKb8WQcP6Xz72ejrtqw6m2FMPl9HhhurkF1OyUC4,18248
440
- tests/support/inspection/fakes/fake_reflection_concrete.py,sha256=j6gzsxE3xq5oJ30H_Hm1RsUwEY3jOYBu4sclxtD1ayo,1047
441
- tests/support/inspection/fakes/fake_reflection_concrete_with_abstract.py,sha256=ibCjrtNM6BMf5Z5VMvat7E6zOAk5g9z--gj4ykKJWY8,2118
442
- tests/support/inspection/fakes/fake_reflection_instance_with_abstract.py,sha256=SfL8FuFmr650RlzXTrP4tGMfsPVZLhOxVnBXu_g1POg,1471
434
+ tests/support/standard/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
435
+ tests/support/standard/test_services_std.py,sha256=jRL3QbfbDaMH2Qs9W6tmMgzM-fhrVqOUnD-JeMAK0uA,5515
436
+ tests/support/wrapper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
437
+ tests/support/wrapper/test_services_wrapper_docdict.py,sha256=yeVwl-VcwkWSQYyxZu3qfqT7YtP8LIEJgHo2ejzISh0,4984
443
438
  tests/testing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
444
439
  tests/testing/test_testing_result.py,sha256=MrGK3ZimedL0b5Ydu69Dg8Iul017AzLTm7VPxpXlpfU,4315
445
440
  tests/testing/test_testing_unit.py,sha256=A6QkiOkP7GPC1Szh_GqsrV7GxjWjK8cIwFez6YfrzmM,7683
446
- orionis-0.305.0.dist-info/METADATA,sha256=6yq515Gn8B3eqR0DjiTMY8U3l7WNCjHkRg9_xr0XMXI,4772
447
- orionis-0.305.0.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
448
- orionis-0.305.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
449
- orionis-0.305.0.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
450
- orionis-0.305.0.dist-info/RECORD,,
441
+ orionis-0.307.0.dist-info/METADATA,sha256=nQaVBKIDhYCnQKzHqnkYF4OjW5vqx980lPIigNZteu0,4772
442
+ orionis-0.307.0.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
443
+ orionis-0.307.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
444
+ orionis-0.307.0.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
445
+ orionis-0.307.0.dist-info/RECORD,,
@@ -507,19 +507,34 @@ class AbstractFakeClass(ABC):
507
507
  @property
508
508
  @abstractmethod
509
509
  def computed_public_property(self) -> str:
510
- """Propiedad pública computada."""
510
+ """
511
+ Computes and returns the value of a public property.
512
+
513
+ Returns:
514
+ str: The computed value of the public property.
515
+ """
511
516
  pass
512
517
 
513
518
  @property
514
519
  @abstractmethod
515
520
  def _computed_property_protected(self) -> str:
516
- """Propiedad protegida computada."""
521
+ """
522
+ A protected method intended to compute and return a string property.
523
+
524
+ Returns:
525
+ str: The computed property as a string.
526
+ """
517
527
  pass
518
528
 
519
529
  @property
520
530
  @abstractmethod
521
531
  def __computed_property_private(self) -> str:
522
- """Propiedad privada computada."""
532
+ """
533
+ A private computed property method.
534
+
535
+ Returns:
536
+ str: The computed string value.
537
+ """
523
538
  pass
524
539
 
525
540
  def __init__(self) -> None: