We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf0ddc0 commit 787712bCopy full SHA for 787712b
test/unit/test_util.py
@@ -28,6 +28,12 @@ def test_timer():
28
class TestCoreLoader:
29
"""Tests for the _CoreLoader class."""
30
31
+ def test_e2e(self):
32
+ loader = _CoreLoader()
33
+ loader.load()
34
+ assert loader.get_load_error() == str(None)
35
+ assert loader.get_core_version() == "0.0.1"
36
+
37
def test_core_loader_initialization(self):
38
"""Test that _CoreLoader initializes with None values."""
39
loader = _CoreLoader()
0 commit comments