test_winedrio.py 448 B

123456789101112131415161718192021
  1. """
  2. Tests of neo.io.wineedrio
  3. """
  4. import unittest
  5. from neo.io import WinEdrIO
  6. from neo.test.iotest.common_io_test import BaseTestIO
  7. class TestWinedrIO(BaseTestIO, unittest.TestCase, ):
  8. ioclass = WinEdrIO
  9. files_to_test = ['File_WinEDR_1.EDR',
  10. 'File_WinEDR_2.EDR',
  11. 'File_WinEDR_3.EDR',
  12. ]
  13. files_to_download = files_to_test
  14. if __name__ == "__main__":
  15. unittest.main()