test_elanio.py 581 B

123456789101112131415161718192021222324252627
  1. # -*- coding: utf-8 -*-
  2. """
  3. Tests of neo.io.elanio
  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 ElanIO
  10. from neo.test.iotest.common_io_test import BaseTestIO
  11. class TestElanIO(BaseTestIO, unittest.TestCase, ):
  12. ioclass = ElanIO
  13. files_to_test = ['File_elan_1.eeg']
  14. files_to_download = ['File_elan_1.eeg',
  15. 'File_elan_1.eeg.ent',
  16. 'File_elan_1.eeg.pos',
  17. ]
  18. if __name__ == "__main__":
  19. unittest.main()