From 7d7984b8fb67854c58d1106dc8038a864b56d7a1 Mon Sep 17 00:00:00 2001 From: Luo Tao Date: Thu, 27 Jul 2017 15:40:08 +0800 Subject: [PATCH] add test for libsndfile installation --- tests/test_setup.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 tests/test_setup.py diff --git a/tests/test_setup.py b/tests/test_setup.py new file mode 100644 index 00000000..bd6fabb0 --- /dev/null +++ b/tests/test_setup.py @@ -0,0 +1,12 @@ +"""Test Setup.""" +import unittest + + +class TestSetup(unittest.TestCase): + # test the installation of libsndfile library + def test_soundfile(self): + import soundfile + + +if __name__ == '__main__': + unittest.main() -- GitLab