Skip to content

Commit

Permalink
test: smoke api
Browse files Browse the repository at this point in the history
Signed-off-by: nstarman <nstarman@users.noreply.github.com>
  • Loading branch information
nstarman committed Jan 31, 2024
1 parent 52b4cb4 commit 70bbc0a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/smoke/integrate/test_package.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
"""Test the :mod:`galax.integrate` module."""

from galax import integrate
from galax.integrate import _base, _builtin
from galax.integrate import _api, _base, _builtin


def test_all() -> None:
"""Test the API."""
assert set(integrate.__all__) == set(_base.__all__ + _builtin.__all__)
assert set(integrate.__all__) == set(
_api.__all__ + _base.__all__ + _builtin.__all__
)

0 comments on commit 70bbc0a

Please sign in to comment.