test_intanio.py 390 B

123456789101112131415161718192021
  1. """
  2. Tests of neo.io.intanio
  3. """
  4. import unittest
  5. from neo.io import IntanIO
  6. from neo.test.iotest.common_io_test import BaseTestIO
  7. class TestIntanIO(BaseTestIO, unittest.TestCase, ):
  8. ioclass = IntanIO
  9. files_to_download = [
  10. 'intan_rhs_test_1.rhs',
  11. 'intan_rhd_test_1.rhd',
  12. ]
  13. files_to_test = files_to_download
  14. if __name__ == "__main__":
  15. unittest.main()