orionis 0.283.0__py3-none-any.whl → 0.285.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.
- orionis/foundation/config/testing/entities/testing.py +25 -0
- orionis/metadata/framework.py +1 -1
- orionis/services/asynchrony/{async_io.py → coroutines.py} +2 -1
- orionis/services/asynchrony/exceptions/__init__.py +0 -0
- orionis/services/asynchrony/exceptions/coroutine_exception.py +26 -0
- orionis/services/environment/dot_env.py +7 -7
- orionis/services/environment/env.py +56 -8
- orionis/services/environment/exceptions/__init__.py +0 -0
- orionis/services/environment/exceptions/value_exception.py +27 -0
- orionis/services/introspection/exceptions/__init__.py +0 -0
- orionis/services/introspection/exceptions/types.py +0 -0
- orionis/services/introspection/helpers/__init__.py +0 -0
- orionis/services/introspection/helpers/functions.py +285 -0
- orionis/services/introspection/reflection.py +216 -0
- orionis/services/parsers/exceptions/__init__.py +0 -0
- orionis/services/parsers/serializer.py +1 -1
- orionis/services/paths/exceptions/__init__.py +0 -0
- orionis/services/paths/exceptions/not_found_exceptions.py +28 -0
- orionis/services/paths/exceptions/path_value_exceptions.py +28 -0
- orionis/services/paths/resolver.py +6 -4
- orionis/services/standard/exceptions/__init__.py +0 -0
- orionis/services/standard/exceptions/path_value_exceptions.py +28 -0
- orionis/services/standard/std.py +4 -3
- orionis/test/entities/test_result.py +14 -1
- orionis/test/exceptions/test_persistence_error.py +34 -0
- orionis/test/exceptions/test_runtime_error.py +26 -0
- orionis/test/exceptions/test_value_error.py +26 -0
- orionis/test/logs/contracts/history.py +29 -56
- orionis/test/logs/history.py +309 -188
- orionis/test/output/contracts/dumper.py +24 -8
- orionis/test/output/dumper.py +52 -21
- orionis/test/suites/contracts/test_suite.py +27 -13
- orionis/test/suites/contracts/test_unit.py +101 -61
- orionis/test/suites/test_suite.py +45 -24
- orionis/test/suites/test_unit.py +559 -290
- orionis/unittesting.py +8 -0
- {orionis-0.283.0.dist-info → orionis-0.285.0.dist-info}/METADATA +1 -1
- {orionis-0.283.0.dist-info → orionis-0.285.0.dist-info}/RECORD +44 -26
- tests/services/asynchrony/test_async_io.py +3 -2
- /orionis/services/parsers/{exception.py → exceptions/exception_parser.py} +0 -0
- {orionis-0.283.0.dist-info → orionis-0.285.0.dist-info}/WHEEL +0 -0
- {orionis-0.283.0.dist-info → orionis-0.285.0.dist-info}/licenses/LICENCE +0 -0
- {orionis-0.283.0.dist-info → orionis-0.285.0.dist-info}/top_level.txt +0 -0
- {orionis-0.283.0.dist-info → orionis-0.285.0.dist-info}/zip-safe +0 -0
orionis/unittesting.py
CHANGED
@@ -15,6 +15,10 @@ from orionis.test.enums.test_status import TestStatus
|
|
15
15
|
|
16
16
|
# Import custom exception for test failures
|
17
17
|
from orionis.test.exceptions.test_failure_exception import OrionisTestFailureException
|
18
|
+
from orionis.test.exceptions.test_config_exception import OrionisTestConfigException
|
19
|
+
from orionis.test.exceptions.test_persistence_error import OrionisTestPersistenceError
|
20
|
+
from orionis.test.exceptions.test_runtime_error import OrionisTestRuntimeError
|
21
|
+
from orionis.test.exceptions.test_value_error import OrionisTestValueError
|
18
22
|
|
19
23
|
# Import configuration and suite classes for organizing tests
|
20
24
|
from orionis.test.suites.test_suite import Configuration, TestSuite
|
@@ -43,6 +47,10 @@ __all__ = [
|
|
43
47
|
"ExecutionMode",
|
44
48
|
"TestStatus",
|
45
49
|
"OrionisTestFailureException",
|
50
|
+
"OrionisTestConfigException",
|
51
|
+
"OrionisTestPersistenceError",
|
52
|
+
"OrionisTestRuntimeError",
|
53
|
+
"OrionisTestValueError",
|
46
54
|
"Configuration",
|
47
55
|
"TestSuite",
|
48
56
|
"UnitTest",
|
@@ -1,7 +1,7 @@
|
|
1
1
|
orionis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
2
|
orionis/_application.py,sha256=dMjJ0nFcIIOBGb5zr-tHNzcgTOZ1vJ7iMdFAlqSQph0,9405
|
3
3
|
orionis/application.py,sha256=Off5uOUj-IYvvR8DcqLUoBW_98opWa7MQrtqTr0SZGc,292
|
4
|
-
orionis/unittesting.py,sha256=
|
4
|
+
orionis/unittesting.py,sha256=hVUVkHOggsqXWZKBy-Ht8pcRKrvDmbh_cxpcSaguUac,2224
|
5
5
|
orionis/_container/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
6
|
orionis/_container/container.py,sha256=0AOqTNwpN_OtWbq9mBI99qfJ7LMkN71y0lP0JWKzut0,18289
|
7
7
|
orionis/_container/container_integrity.py,sha256=vrqZrkJaP6ghbiAzr-nEul9f_lEWVa2nMUSugQXDfWk,10095
|
@@ -222,24 +222,29 @@ orionis/foundation/config/session/enums/same_site_policy.py,sha256=Oo05CJ-5keJWz
|
|
222
222
|
orionis/foundation/config/session/helpers/secret_key.py,sha256=yafjzQ9KVQdXzCQCMthpgizlNCo5F5UTLtAnInipUMk,447
|
223
223
|
orionis/foundation/config/testing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
224
224
|
orionis/foundation/config/testing/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
225
|
-
orionis/foundation/config/testing/entities/testing.py,sha256=
|
225
|
+
orionis/foundation/config/testing/entities/testing.py,sha256=m_i9jZlOXs_AzNKNNf0a3ByS7jDGaRz_2FO1ScV577Q,11293
|
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=
|
229
|
+
orionis/metadata/framework.py,sha256=bi4V9fVwcUDbl6C-vHazRb4b82o1n37CNVmVq1JvV2A,4960
|
230
230
|
orionis/metadata/package.py,sha256=5p4fxjPpaktsreJ458pAl-Oi1363MWACPQvqXi_N6oA,6704
|
231
231
|
orionis/patterns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
232
232
|
orionis/patterns/singleton/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
233
233
|
orionis/patterns/singleton/meta_class.py,sha256=YN5mSSQeIX_Gh_TK5HD-ms6IYBTRsRcuzoUtpX-9kYY,2134
|
234
234
|
orionis/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
235
235
|
orionis/services/asynchrony/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
236
|
-
orionis/services/asynchrony/
|
236
|
+
orionis/services/asynchrony/coroutines.py,sha256=WEggmA0TnoizwtRfWtv0TJfQoHQGBZV0w9PwUsrJ6e4,1137
|
237
|
+
orionis/services/asynchrony/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
238
|
+
orionis/services/asynchrony/exceptions/coroutine_exception.py,sha256=zMdv8akwFbvyXY8Co-9PS7Nk9DEtvwX6X4tW-9MTmsY,1082
|
237
239
|
orionis/services/environment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
238
|
-
orionis/services/environment/dot_env.py,sha256=
|
239
|
-
orionis/services/environment/env.py,sha256=
|
240
|
+
orionis/services/environment/dot_env.py,sha256=TrsVB4_XnJ7c0z0FgSkJsHzpqnWvGwdTkhSpP65N3rQ,10115
|
241
|
+
orionis/services/environment/env.py,sha256=CbD1yjGB_RqU8PnAdjr0RN5hmaFTQYby--PA7nYu8Gc,4181
|
240
242
|
orionis/services/environment/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
241
243
|
orionis/services/environment/contracts/env.py,sha256=5g7jppzR5_ln8HlxJu2r0sSxLOkvBfSk3t4x_BKkYYk,1811
|
244
|
+
orionis/services/environment/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
245
|
+
orionis/services/environment/exceptions/value_exception.py,sha256=1eUFPfldsOvLUiZztXTHSxsjM2lVh4cU7ACzsc7_cjs,1257
|
242
246
|
orionis/services/introspection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
247
|
+
orionis/services/introspection/reflection.py,sha256=tQtE5WnmdNOpZN8BIyAnfrGHXz7wgy8YE-yaurYfIz8,7763
|
243
248
|
orionis/services/introspection/abstracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
244
249
|
orionis/services/introspection/abstracts/reflect_abstract.py,sha256=JM0jqNIxXAn00K4qYmogGZqNIhg6c3tonAk0wwwyh_c,17859
|
245
250
|
orionis/services/introspection/abstracts/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -252,19 +257,29 @@ orionis/services/introspection/dependencies/entities/__init__.py,sha256=47DEQpj8
|
|
252
257
|
orionis/services/introspection/dependencies/entities/class_dependencies.py,sha256=tLskzBMhrAx4OmZUJXXB_5Z41nhdhtqD4y4m5RfWdJQ,1715
|
253
258
|
orionis/services/introspection/dependencies/entities/method_dependencies.py,sha256=WHypDCpugtsa5ge1nqVlykHbA0Wo_X7XchDwQpGiM0c,1780
|
254
259
|
orionis/services/introspection/dependencies/entities/resolved_dependencies.py,sha256=lrPr-tOx2IPaDlPNyhJ7uXUdnLjKybfntTKTCu7WXJg,1899
|
260
|
+
orionis/services/introspection/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
261
|
+
orionis/services/introspection/exceptions/types.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
262
|
+
orionis/services/introspection/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
263
|
+
orionis/services/introspection/helpers/functions.py,sha256=-UhQ53o4IU3XwpA2I0e0m8gZaH1DoDKaU_yH2XYqT54,8541
|
255
264
|
orionis/services/parsers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
256
|
-
orionis/services/parsers/
|
257
|
-
orionis/services/parsers/serializer.py,sha256=8ehKJ-ygAXz2sVvU0gA9wuoxslUS2dPFf7X5yy3QTz8,513
|
265
|
+
orionis/services/parsers/serializer.py,sha256=mxWlzqgkoO7EeIr3MZ5gdzQUuSfjqWDMau85PEqlBQY,531
|
258
266
|
orionis/services/parsers/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
259
267
|
orionis/services/parsers/contracts/exception_parser.py,sha256=HcWN7nJrvD7xLREPKEnBhyG30IkkAB7Bx_hGpcfb0ZE,912
|
268
|
+
orionis/services/parsers/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
269
|
+
orionis/services/parsers/exceptions/exception_parser.py,sha256=hKL2-ZzZvC_nuRB0KrdoIzOy_n-hR26jFYABNPnQrwo,3634
|
260
270
|
orionis/services/paths/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
261
|
-
orionis/services/paths/resolver.py,sha256=
|
271
|
+
orionis/services/paths/resolver.py,sha256=Qx_A95FRnnFnjko5XerfrBxOU1j-K8ym1S1J0OWr2RU,3065
|
262
272
|
orionis/services/paths/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
263
273
|
orionis/services/paths/contracts/resolver.py,sha256=v7uTgByE2nQS2ZM_b1rtMzY6HH03MNKfAYQoTswPf9o,1627
|
274
|
+
orionis/services/paths/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
275
|
+
orionis/services/paths/exceptions/not_found_exceptions.py,sha256=pe2tnZUA5BhbdDWv84VvX3eILG0UZp89I0IY0Po5v9Y,894
|
276
|
+
orionis/services/paths/exceptions/path_value_exceptions.py,sha256=kTkILRMqmOPJv3q9H8VvnWqTpCTMKpzxWt3P9pXd43E,891
|
264
277
|
orionis/services/standard/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
265
|
-
orionis/services/standard/std.py,sha256=
|
278
|
+
orionis/services/standard/std.py,sha256=Y86ilUyd0BKI3zAzHCFaQ6dVRWwmjFS9gFl1LYY220U,3704
|
266
279
|
orionis/services/standard/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
267
280
|
orionis/services/standard/contracts/std.py,sha256=x9sVir2yg4hve56cCklIdVSr8utruIO_sUdlTNfZ1Ds,3109
|
281
|
+
orionis/services/standard/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
282
|
+
orionis/services/standard/exceptions/path_value_exceptions.py,sha256=sE_zCweo5zzx9UCdo0QYtxiX7IB2AvVAXXS4TPlzcL8,895
|
268
283
|
orionis/services/system/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
269
284
|
orionis/services/system/imports.py,sha256=mp8TB-s4gxLQRvl06Tr8XkiWvAPz6OFLZwx-HbcZgnw,4639
|
270
285
|
orionis/services/system/runtime_imports.py,sha256=Ry4sVoQvFm39IyYedZNVyNuCeTRftTWSvFLNrPzfIgE,2366
|
@@ -305,30 +320,33 @@ orionis/test/cases/test_async.py,sha256=YwycimGfUx9-kd_FFO8BZXyVayYwOBOzxbu3WZU_
|
|
305
320
|
orionis/test/cases/test_case.py,sha256=GVN3cxYuE47uPOEqFUiMreLdXjTyqzHjjxfyEM5_D4w,1446
|
306
321
|
orionis/test/cases/test_sync.py,sha256=FekXNQDq5pOQB2YpvP7E9jAqIJH9uZhTMoPz-qx8FO0,742
|
307
322
|
orionis/test/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
308
|
-
orionis/test/entities/test_result.py,sha256=
|
323
|
+
orionis/test/entities/test_result.py,sha256=hz_0NXX5lSVSf4OWhHktrn1kFD43WiL5HugNuHvYRtg,3035
|
309
324
|
orionis/test/enums/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
310
325
|
orionis/test/enums/test_mode.py,sha256=CHstYZ180MEX84AjZIoyA1l8gKxFLp_eciLOj2in57E,481
|
311
326
|
orionis/test/enums/test_status.py,sha256=vNKRmp1lud_ZGTayf3A8wO_0vEYdFABy_oMw-RcEc1c,673
|
312
327
|
orionis/test/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
313
328
|
orionis/test/exceptions/test_config_exception.py,sha256=yJv0JUTkZcF0Z4J8UHtffUipNgwNgmLhaqlOnnXFLyQ,995
|
314
329
|
orionis/test/exceptions/test_failure_exception.py,sha256=pcMhzF1Z5kkJm4yM7gZiQI0SvGjKFixJkRd6VBE03AY,2199
|
330
|
+
orionis/test/exceptions/test_persistence_error.py,sha256=S-5-rwZnxJOcj3rPe_0ajH7UUkLYcB--wi06ZuohoJg,1228
|
331
|
+
orionis/test/exceptions/test_runtime_error.py,sha256=AdYh6Kl-6I2w7-kVtt9AT9q0ArNvXPPmxKOTElQ-7IM,989
|
332
|
+
orionis/test/exceptions/test_value_error.py,sha256=iOMeMOVy7NdqzUH6QpPow9DCDSlHJkbTzXBguJzvfKA,973
|
315
333
|
orionis/test/logs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
316
|
-
orionis/test/logs/history.py,sha256=
|
334
|
+
orionis/test/logs/history.py,sha256=YxWcY8hJK2eRk8BxBKti8WpWZSvv6g_uwHKAEPGZJAY,13230
|
317
335
|
orionis/test/logs/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
318
|
-
orionis/test/logs/contracts/history.py,sha256=
|
336
|
+
orionis/test/logs/contracts/history.py,sha256=v3vjWmvn73DF_C8Ur-aWdHUMrztX584mXKwYgsYQgCE,1435
|
319
337
|
orionis/test/output/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
320
|
-
orionis/test/output/dumper.py,sha256=
|
338
|
+
orionis/test/output/dumper.py,sha256=y-6du3n1IU2Cd2MFbMuEiLcpMqEOqENkuAXwMMhcsEI,4287
|
321
339
|
orionis/test/output/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
322
|
-
orionis/test/output/contracts/dumper.py,sha256=
|
340
|
+
orionis/test/output/contracts/dumper.py,sha256=5OqGc4GEXCXX76sCX185giQMyKwwZvlOv3I7tTwV2fQ,1324
|
323
341
|
orionis/test/suites/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
324
|
-
orionis/test/suites/test_suite.py,sha256=
|
325
|
-
orionis/test/suites/test_unit.py,sha256=
|
342
|
+
orionis/test/suites/test_suite.py,sha256=fdVmC56PJfWDuYeekY7oN-04AEHMqxwLI5mZNJAuOZI,5261
|
343
|
+
orionis/test/suites/test_unit.py,sha256=ZkpRyUEHsxnbto3FBmvPfFHHRyOgv4NBIcS2LF1-Y_s,49374
|
326
344
|
orionis/test/suites/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
327
|
-
orionis/test/suites/contracts/test_suite.py,sha256=
|
328
|
-
orionis/test/suites/contracts/test_unit.py,sha256=
|
345
|
+
orionis/test/suites/contracts/test_suite.py,sha256=eluzYwkNBbKjxYStj_tHN_Fm3YDPpGQdqMu5eiluh-E,1059
|
346
|
+
orionis/test/suites/contracts/test_unit.py,sha256=l1LQllODyvcSByXMl1lGrUkoLsXbBHZZLWZI4A-mlQg,5881
|
329
347
|
orionis/test/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
330
348
|
orionis/test/view/index.html,sha256=U4XYO4hA-mAJCK1gcVRgIysmISK3g3Vgi2ntLofFAhE,6592
|
331
|
-
orionis-0.
|
349
|
+
orionis-0.285.0.dist-info/licenses/LICENCE,sha256=-_4cF2EBKuYVS_SQpy1uapq0oJPUU1vl_RUWSy2jJTo,1111
|
332
350
|
tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
333
351
|
tests/example/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
334
352
|
tests/example/test_example.py,sha256=DUZU6lWVFsyHtBEXx0cBxMrSCpOtAOL3PUoi9-tXAas,583
|
@@ -390,7 +408,7 @@ tests/patterns/singleton/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
390
408
|
tests/patterns/singleton/test_singleton.py,sha256=eShiB9gD7J9p0DQw0qjtU5rQXfHxw7zkGds-1EC4d_o,609
|
391
409
|
tests/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
392
410
|
tests/services/asynchrony/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
393
|
-
tests/services/asynchrony/test_async_io.py,sha256=
|
411
|
+
tests/services/asynchrony/test_async_io.py,sha256=UzEgg1ZRF78eoGSDysTJ_vEubBX3HIvacFs_TCEIEO8,1642
|
394
412
|
tests/services/environment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
395
413
|
tests/services/environment/test_env.py,sha256=Fg4NejwmTdTTj4FezrWkJc639CzodGEgmdFa4EPlmqk,7084
|
396
414
|
tests/services/inspection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -426,8 +444,8 @@ tests/support/inspection/fakes/fake_reflection_instance_with_abstract.py,sha256=
|
|
426
444
|
tests/testing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
427
445
|
tests/testing/test_testing_result.py,sha256=54QDn6_v9feIcDcA6LPXcvYhlt_X8JqLGTYWS9XjKXM,3029
|
428
446
|
tests/testing/test_testing_unit.py,sha256=MeVL4gc4cGRPXdVOOKJx6JPKducrZ8cN7F52Iiciixg,5443
|
429
|
-
orionis-0.
|
430
|
-
orionis-0.
|
431
|
-
orionis-0.
|
432
|
-
orionis-0.
|
433
|
-
orionis-0.
|
447
|
+
orionis-0.285.0.dist-info/METADATA,sha256=zaEGsYqUBNolrX-mxMOzAT54-7oJ08nxfxQKnneRM8E,4772
|
448
|
+
orionis-0.285.0.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
449
|
+
orionis-0.285.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
|
450
|
+
orionis-0.285.0.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
451
|
+
orionis-0.285.0.dist-info/RECORD,,
|
@@ -1,5 +1,6 @@
|
|
1
1
|
|
2
|
-
from orionis.services.asynchrony.
|
2
|
+
from orionis.services.asynchrony.coroutines import run_coroutine
|
3
|
+
from orionis.services.asynchrony.exceptions.coroutine_exception import OrionisCoroutineException
|
3
4
|
from orionis.unittesting import TestCase
|
4
5
|
|
5
6
|
class TestsAsyncIO(TestCase):
|
@@ -35,5 +36,5 @@ class TestsAsyncIO(TestCase):
|
|
35
36
|
def sample_no_coroutine():
|
36
37
|
return "Hello, World!"
|
37
38
|
|
38
|
-
with self.assertRaises(
|
39
|
+
with self.assertRaises(OrionisCoroutineException):
|
39
40
|
run_coroutine(sample_no_coroutine())
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|