diff --git a/tests/test_setup.py b/tests/test_setup.py new file mode 100644 index 000000000..bd6fabb0a --- /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()