Skip to content

Commit

Permalink
Change name and add tests
Browse files Browse the repository at this point in the history
  • Loading branch information
samwaseda committed Nov 22, 2024
1 parent 47b108b commit e2cce68
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
File renamed without changes.
13 changes: 13 additions & 0 deletions tests/unit/test_potential.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import unittest
from stinx.potential import get_potential_path
import os


class TestStinx(unittest.TestCase):

def test_path_exists(self):
self.assertTrue(os.path.exists(get_potential_path("Ag")))


if __name__ == "__main__":
unittest.main()

0 comments on commit e2cce68

Please sign in to comment.