test_intanio.py 512 B

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