Skip to content

Commit

Permalink
make diffusion module available
Browse files Browse the repository at this point in the history
  • Loading branch information
ahms5 committed Feb 24, 2023
1 parent a283387 commit bcb4fbc
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions imkar/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@


from . import scattering # noqa
from . import diffusion # noqa
9 changes: 9 additions & 0 deletions tests/test_imkar.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,12 @@ def test_content(response): # noqa
"""Sample pytest test function with the pytest fixture as an argument."""
# from bs4 import BeautifulSoup
# assert 'GitHub' in BeautifulSoup(response.content).title.string


def test_imports():
import imkar
assert imkar
import imkar.diffusion as diffusion
assert diffusion
import imkar.scattering as scattering
assert scattering

0 comments on commit bcb4fbc

Please sign in to comment.