test_plexonio.py 413 B

12345678910111213141516171819202122
  1. """
  2. Tests of neo.io.plexonio
  3. """
  4. import unittest
  5. from neo.io import PlexonIO
  6. from neo.test.iotest.common_io_test import BaseTestIO
  7. class TestPlexonIO(BaseTestIO, unittest.TestCase, ):
  8. ioclass = PlexonIO
  9. files_to_test = [
  10. 'File_plexon_1.plx',
  11. 'File_plexon_2.plx',
  12. 'File_plexon_3.plx',
  13. ]
  14. files_to_download = files_to_test
  15. if __name__ == "__main__":
  16. unittest.main()