orionis 0.202.0__py3-none-any.whl → 0.203.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-0.202.0.dist-info → orionis-0.203.0.dist-info}/METADATA +1 -1
- {orionis-0.202.0.dist-info → orionis-0.203.0.dist-info}/RECORD +12 -7
- tests/example/__init__.py +0 -0
- tests/example/test_example.py +20 -0
- tests/support/__init__.py +0 -0
- tests/support/inspection/__init__.py +0 -0
- tests/support/inspection/test_reflection.py +9 -0
- {orionis-0.202.0.dist-info → orionis-0.203.0.dist-info}/LICENCE +0 -0
- {orionis-0.202.0.dist-info → orionis-0.203.0.dist-info}/WHEEL +0 -0
- {orionis-0.202.0.dist-info → orionis-0.203.0.dist-info}/entry_points.txt +0 -0
- {orionis-0.202.0.dist-info → orionis-0.203.0.dist-info}/top_level.txt +0 -0
orionis/framework.py
CHANGED
@@ -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=Xh76tA5RZNGvPeGOth1XVlsBeaj_fhTEcYBbxQoXLdU,1469
|
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,9 +195,14 @@ orionis/static/logos/OrionisFramework2.png,sha256=Z_-yBHNSo33QeSTyi-8GfiFozdRqUo
|
|
195
195
|
orionis/static/logos/OrionisFramework3.png,sha256=BPG9ZB58vDALavI9OMmr8Ym0DQa44s5NL_3M4M6dIYs,193734
|
196
196
|
tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
197
197
|
tests/main.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
orionis-0.
|
198
|
+
tests/example/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
199
|
+
tests/example/test_example.py,sha256=IyhepxT7QPQcV2IYGuUDBWgd6sqDSko4-kImbRgqLX4,558
|
200
|
+
tests/support/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
201
|
+
tests/support/inspection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
202
|
+
tests/support/inspection/test_reflection.py,sha256=CQu1j63lHEg2w5Ht8ofaGRmgl1WDNHMnwHjvx5ljs8g,191
|
203
|
+
orionis-0.203.0.dist-info/LICENCE,sha256=-_4cF2EBKuYVS_SQpy1uapq0oJPUU1vl_RUWSy2jJTo,1111
|
204
|
+
orionis-0.203.0.dist-info/METADATA,sha256=b8whHtPL9ouHumRWVzSHYM1FfdcGUoR1sVDrcQcV5lY,3003
|
205
|
+
orionis-0.203.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
206
|
+
orionis-0.203.0.dist-info/entry_points.txt,sha256=a_e0faeSqyUCVZd0MqljQ2oaHHdlsz6g9sU_bMqi5zQ,49
|
207
|
+
orionis-0.203.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
|
208
|
+
orionis-0.203.0.dist-info/RECORD,,
|
File without changes
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import unittest
|
2
|
+
|
3
|
+
class TestExample(unittest.TestCase):
|
4
|
+
"""
|
5
|
+
Unit tests for basic example functionality.
|
6
|
+
"""
|
7
|
+
|
8
|
+
def testUnitExample(self):
|
9
|
+
"""
|
10
|
+
Test that basic equality assertions work as expected.
|
11
|
+
|
12
|
+
Asserts
|
13
|
+
-------
|
14
|
+
1 == 1 : bool
|
15
|
+
Ensures that the integer 1 is equal to itself.
|
16
|
+
2 == 2 : bool
|
17
|
+
Ensures that the integer 2 is equal to itself.
|
18
|
+
"""
|
19
|
+
self.assertEqual(1, 1) # Check if 1 equals 1
|
20
|
+
self.assertEqual(2, 2) # Check if 2 equals 2
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|