Skip to content

Commit

Permalink
protcur test ability to find data files
Browse files Browse the repository at this point in the history
  • Loading branch information
tgbugs committed Oct 30, 2019
1 parent c146257 commit afe3a64
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions protcur/test/test_data_files.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import unittest


class TestDataFiles(unittest.TestCase):
def test_exists_units(self):
from protcur.config import __units_folder__ as units_folder
assert units_folder.exists(), units_folder

def test_exists_test_params(self):
from protcur.config import __units_test_params__ as test_params
assert test_params.exists(), test_params

0 comments on commit afe3a64

Please sign in to comment.