pUnit 1.2.3__tar.gz → 1.2.4__tar.gz

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 (33) hide show
  1. {punit-1.2.3/src/pUnit.egg-info → punit-1.2.4}/PKG-INFO +1 -1
  2. {punit-1.2.3 → punit-1.2.4}/pyproject.toml +1 -1
  3. {punit-1.2.3 → punit-1.2.4/src/pUnit.egg-info}/PKG-INFO +1 -1
  4. {punit-1.2.3 → punit-1.2.4}/src/punit/__init__.py +1 -1
  5. {punit-1.2.3 → punit-1.2.4}/src/punit/facts/FactManager.py +1 -1
  6. {punit-1.2.3 → punit-1.2.4}/src/punit/theories/TheoryManager.py +1 -1
  7. {punit-1.2.3 → punit-1.2.4}/.scripts/punit +0 -0
  8. {punit-1.2.3 → punit-1.2.4}/LICENSE +0 -0
  9. {punit-1.2.3 → punit-1.2.4}/README.md +0 -0
  10. {punit-1.2.3 → punit-1.2.4}/setup.cfg +0 -0
  11. {punit-1.2.3 → punit-1.2.4}/src/pUnit.egg-info/SOURCES.txt +0 -0
  12. {punit-1.2.3 → punit-1.2.4}/src/pUnit.egg-info/dependency_links.txt +0 -0
  13. {punit-1.2.3 → punit-1.2.4}/src/pUnit.egg-info/requires.txt +0 -0
  14. {punit-1.2.3 → punit-1.2.4}/src/pUnit.egg-info/top_level.txt +0 -0
  15. {punit-1.2.3 → punit-1.2.4}/src/punit/TestResult.py +0 -0
  16. {punit-1.2.3 → punit-1.2.4}/src/punit/__main__.py +0 -0
  17. {punit-1.2.3 → punit-1.2.4}/src/punit/assertions/__init__.py +0 -0
  18. {punit-1.2.3 → punit-1.2.4}/src/punit/assertions/collections.py +0 -0
  19. {punit-1.2.3 → punit-1.2.4}/src/punit/assertions/exceptions.py +0 -0
  20. {punit-1.2.3 → punit-1.2.4}/src/punit/assertions/strings.py +0 -0
  21. {punit-1.2.3 → punit-1.2.4}/src/punit/cli.py +0 -0
  22. {punit-1.2.3 → punit-1.2.4}/src/punit/discovery/TestModuleDiscovery.py +0 -0
  23. {punit-1.2.3 → punit-1.2.4}/src/punit/discovery/__init__.py +0 -0
  24. {punit-1.2.3 → punit-1.2.4}/src/punit/facts/Fact.py +0 -0
  25. {punit-1.2.3 → punit-1.2.4}/src/punit/facts/__init__.py +0 -0
  26. {punit-1.2.3 → punit-1.2.4}/src/punit/reports/HtmlReportGenerator.py +0 -0
  27. {punit-1.2.3 → punit-1.2.4}/src/punit/reports/JUnitReportGenerator.py +0 -0
  28. {punit-1.2.3 → punit-1.2.4}/src/punit/reports/__init__.py +0 -0
  29. {punit-1.2.3 → punit-1.2.4}/src/punit/runner.py +0 -0
  30. {punit-1.2.3 → punit-1.2.4}/src/punit/theories/Theory.py +0 -0
  31. {punit-1.2.3 → punit-1.2.4}/src/punit/theories/__init__.py +0 -0
  32. {punit-1.2.3 → punit-1.2.4}/src/punit/traits/Trait.py +0 -0
  33. {punit-1.2.3 → punit-1.2.4}/src/punit/traits/__init__.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pUnit
3
- Version: 1.2.3
3
+ Version: 1.2.4
4
4
  Summary: A modernized unit-test framework for Python.
5
5
  Author-email: Shaun Wilson <mrshaunwilson@msn.com>
6
6
  License: MIT License
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "pUnit"
3
- version = "1.2.3"
3
+ version = "1.2.4"
4
4
  description = "A modernized unit-test framework for Python."
5
5
  keywords = ["test", "unittest", "unit-test", "xUnit", "nUnit", "pytest"]
6
6
  authors = [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pUnit
3
- Version: 1.2.3
3
+ Version: 1.2.4
4
4
  Summary: A modernized unit-test framework for Python.
5
5
  Author-email: Shaun Wilson <mrshaunwilson@msn.com>
6
6
  License: MIT License
@@ -1,7 +1,7 @@
1
1
  # SPDX-FileCopyrightText: © 2024 Shaun Wilson
2
2
  # SPDX-License-Identifier: MIT
3
3
 
4
- __version__ = '1.2.3'
4
+ __version__ = '1.2.4'
5
5
 
6
6
  from .assertions import *
7
7
  from .facts import *
@@ -13,7 +13,7 @@ class FactManager:
13
13
 
14
14
  __excludeTraits:list[Trait]
15
15
  __filterPattern:Optional[re.Pattern]
16
- __instance:'FactManager'|None = None
16
+ __instance:Optional['FactManager'] = None
17
17
  __includeTraits:list[Trait]
18
18
  __modules:dict[str, list[Fact]]
19
19
  __traits:dict[Callable, list[Trait]]
@@ -14,7 +14,7 @@ class TheoryManager:
14
14
  __excludeTraits:list[Trait]
15
15
  __filterPattern:Optional[re.Pattern]
16
16
  __includeTraits:list[Trait]
17
- __instance:'TheoryManager'|None = None
17
+ __instance:Optional['TheoryManager'] = None
18
18
  __modules:dict[str, list[Theory]]
19
19
  __datas:dict[Callable, list[tuple]]
20
20
  __traits:dict[Callable, list[Trait]]
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes