astrora_core 0.1.1

Astrora - Rust-backed astrodynamics library - core computational components
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"""Basic import tests"""


def test_import_astrora():
    """Test that astrora can be imported"""
    import astrora

    assert hasattr(astrora, "__version__")


def test_version():
    """Test version string format"""
    import astrora

    version = astrora.__version__
    assert isinstance(version, str)
    assert len(version.split(".")) >= 2  # At least major.minor