test_alphaomegaio.py 514 B

1234567891011121314151617181920212223
  1. # -*- coding: utf-8 -*-
  2. """
  3. Tests of neo.io.alphaomegaio
  4. """
  5. # needed for python 3 compatibility
  6. from __future__ import absolute_import, division
  7. import unittest
  8. from neo.io import AlphaOmegaIO
  9. from neo.test.iotest.common_io_test import BaseTestIO
  10. class TestAlphaOmegaIO(BaseTestIO, unittest.TestCase):
  11. files_to_test = ['File_AlphaOmega_1.map',
  12. 'File_AlphaOmega_2.map']
  13. files_to_download = files_to_test
  14. ioclass = AlphaOmegaIO
  15. if __name__ == "__main__":
  16. unittest.main()