add test for libsndfile installation

pull/2/head
Luo Tao 8 years ago
parent c7676286ab
commit 7d7984b8fb

@ -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()
Loading…
Cancel
Save