orionis 0.228.0__py3-none-any.whl → 0.229.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/framework.py +1 -1
- orionis/luminate/test/test_case.py +4 -4
- {orionis-0.228.0.dist-info → orionis-0.229.0.dist-info}/METADATA +1 -1
- {orionis-0.228.0.dist-info → orionis-0.229.0.dist-info}/RECORD +8 -8
- {orionis-0.228.0.dist-info → orionis-0.229.0.dist-info}/LICENCE +0 -0
- {orionis-0.228.0.dist-info → orionis-0.229.0.dist-info}/WHEEL +0 -0
- {orionis-0.228.0.dist-info → orionis-0.229.0.dist-info}/entry_points.txt +0 -0
- {orionis-0.228.0.dist-info → orionis-0.229.0.dist-info}/top_level.txt +0 -0
orionis/framework.py
CHANGED
@@ -23,9 +23,9 @@ class TestCase(unittest.IsolatedAsyncioTestCase, TestStdOut):
|
|
23
23
|
await super().asyncTearDown()
|
24
24
|
|
25
25
|
# Another asynchronous test case class
|
26
|
-
class
|
26
|
+
class AsyncTestCase(unittest.IsolatedAsyncioTestCase, TestStdOut):
|
27
27
|
"""
|
28
|
-
|
28
|
+
AsyncTestCase is a test case class designed for asynchronous unit testing.
|
29
29
|
It inherits from `unittest.IsolatedAsyncioTestCase` to provide support for
|
30
30
|
async test methods and `TestStdOut` for additional functionality.
|
31
31
|
Methods
|
@@ -53,9 +53,9 @@ class TestAsyncCase(unittest.IsolatedAsyncioTestCase, TestStdOut):
|
|
53
53
|
"""
|
54
54
|
await super().asyncTearDown()
|
55
55
|
|
56
|
-
class
|
56
|
+
class SyncTestCase(unittest.TestCase, TestStdOut):
|
57
57
|
"""
|
58
|
-
|
58
|
+
SyncTestCase is a test case class designed for synchronous unit testing.
|
59
59
|
It inherits from `unittest.TestCase` to provide support for standard test methods
|
60
60
|
and `TestStdOut` for additional functionality.
|
61
61
|
"""
|
@@ -1,6 +1,6 @@
|
|
1
1
|
orionis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
2
|
orionis/console.py,sha256=4gYWxf0fWYgJ4RKwARvnTPh06FL3GJ6SAZ7R2NzOICw,1342
|
3
|
-
orionis/framework.py,sha256=
|
3
|
+
orionis/framework.py,sha256=MDPxWu4HaZVS28kLy_CV2kpeqn8ldPjqwzNWuq7yNNY,1458
|
4
4
|
orionis/installer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
5
|
orionis/installer/manager.py,sha256=Li4TVziRXWfum02xNG4JHwbnLk-u8xzHjdqKz-D894k,2755
|
6
6
|
orionis/installer/output.py,sha256=7O9qa2xtXMB_4ZvVi-Klneom9YazwygAd_4uYAoxhbU,8548
|
@@ -195,7 +195,7 @@ orionis/luminate/support/standard/std.py,sha256=t6dkZxOmSsu3yaIwlvRwdTcV-6KS8lZE
|
|
195
195
|
orionis/luminate/support/standard/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
196
196
|
orionis/luminate/support/standard/contracts/std.py,sha256=x9sVir2yg4hve56cCklIdVSr8utruIO_sUdlTNfZ1Ds,3109
|
197
197
|
orionis/luminate/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
198
|
-
orionis/luminate/test/test_case.py,sha256=
|
198
|
+
orionis/luminate/test/test_case.py,sha256=ghVpBHHnE79kswWjpNNy62XkvKwxrnY-C6DdKZp-0lk,2508
|
199
199
|
orionis/luminate/test/test_exception.py,sha256=21PILTXnMuL5-wT3HGKjIklt8VeIYDcQDN346i-BbJw,1336
|
200
200
|
orionis/luminate/test/test_result.py,sha256=Px2_M70r_y7BntRITk_h0IPTbSTW5XhDyklMKHm3JJI,999
|
201
201
|
orionis/luminate/test/test_status.py,sha256=vNKRmp1lud_ZGTayf3A8wO_0vEYdFABy_oMw-RcEc1c,673
|
@@ -249,9 +249,9 @@ tests/support/patterns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3
|
|
249
249
|
tests/support/patterns/test_singleton.py,sha256=U5uwpgGcP7-fIazsnFLwg30mmc24S62udhVIHuL-scY,634
|
250
250
|
tests/support/standard/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
251
251
|
tests/support/standard/test_std.py,sha256=bJ5LV_OKEEZa_Bk3PTk9Kapk6qECLzcKf0hfR_x2QqM,2042
|
252
|
-
orionis-0.
|
253
|
-
orionis-0.
|
254
|
-
orionis-0.
|
255
|
-
orionis-0.
|
256
|
-
orionis-0.
|
257
|
-
orionis-0.
|
252
|
+
orionis-0.229.0.dist-info/LICENCE,sha256=-_4cF2EBKuYVS_SQpy1uapq0oJPUU1vl_RUWSy2jJTo,1111
|
253
|
+
orionis-0.229.0.dist-info/METADATA,sha256=Vyftj9Iz-FtwmMjJMY6p6l11ttmI6EAvBFPlT6_bTVU,3003
|
254
|
+
orionis-0.229.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
255
|
+
orionis-0.229.0.dist-info/entry_points.txt,sha256=a_e0faeSqyUCVZd0MqljQ2oaHHdlsz6g9sU_bMqi5zQ,49
|
256
|
+
orionis-0.229.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
|
257
|
+
orionis-0.229.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|