Scheduled service maintenance on November 22


On Friday, November 22, 2024, between 06:00 CET and 18:00 CET, GIN services will undergo planned maintenance. Extended service interruptions should be expected. We will try to keep downtimes to a minimum, but recommend that users avoid critical tasks, large data uploads, or DOI requests during this time.

We apologize for any inconvenience.

test_asciisignalio.py 608 B

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