test_winedrio.py 558 B

12345678910111213141516171819202122232425
  1. # -*- coding: utf-8 -*-
  2. """
  3. Tests of neo.io.wineedrio
  4. """
  5. # needed for python 3 compatibility
  6. from __future__ import absolute_import, division
  7. import unittest
  8. from neo.io import WinEdrIO
  9. from neo.test.iotest.common_io_test import BaseTestIO
  10. class TestWinedrIO(BaseTestIO, unittest.TestCase, ):
  11. ioclass = WinEdrIO
  12. files_to_test = ['File_WinEDR_1.EDR',
  13. 'File_WinEDR_2.EDR',
  14. 'File_WinEDR_3.EDR',
  15. ]
  16. files_to_download = files_to_test
  17. if __name__ == "__main__":
  18. unittest.main()