test_plexonio.py 588 B

12345678910111213141516171819202122232425262728
  1. # -*- coding: utf-8 -*-
  2. """
  3. Tests of neo.io.plexonio
  4. """
  5. # needed for python 3 compatibility
  6. from __future__ import absolute_import, division
  7. import sys
  8. import unittest
  9. from neo.io import PlexonIO
  10. from neo.test.iotest.common_io_test import BaseTestIO
  11. class TestPlexonIO(BaseTestIO, unittest.TestCase, ):
  12. ioclass = PlexonIO
  13. files_to_test = [
  14. 'File_plexon_1.plx',
  15. 'File_plexon_2.plx',
  16. 'File_plexon_3.plx',
  17. ]
  18. files_to_download = files_to_test
  19. if __name__ == "__main__":
  20. unittest.main()