test_neuroexplorerio.py 638 B

123456789101112131415161718192021222324252627
  1. # -*- coding: utf-8 -*-
  2. """
  3. Tests of neo.io.neuroexplorerio
  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 NeuroExplorerIO
  10. from neo.test.iotest.common_io_test import BaseTestIO
  11. @unittest.skipIf(sys.version_info[0] > 2, "not Python 3 compatible")
  12. class TestNeuroExplorerIO(BaseTestIO, unittest.TestCase, ):
  13. ioclass = NeuroExplorerIO
  14. files_to_test = ['File_neuroexplorer_1.nex',
  15. 'File_neuroexplorer_2.nex',
  16. ]
  17. files_to_download = files_to_test
  18. if __name__ == "__main__":
  19. unittest.main()