diff options
Diffstat (limited to 'test/test_associated.py')
| -rw-r--r-- | test/test_associated.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/test_associated.py b/test/test_associated.py new file mode 100644 index 0000000..c1b62ac --- /dev/null +++ b/test/test_associated.py @@ -0,0 +1,19 @@ +import utils +import os +import unittest + +TOPDIR = os.path.abspath(os.path.join(os.path.dirname(__file__), '..')) +utils.set_search_paths(TOPDIR) +import modelcif.associated + + +class Tests(unittest.TestCase): + def test_local_pairwise_qa_scores_file(self): + """Test LocalPairwiseQAScoresFile class""" + self.assertWarns(UserWarning, + modelcif.associated.LocalPairwiseQAScoresFile, + path='foo') + + +if __name__ == '__main__': + unittest.main() |
