test_neomatlabio.py 505 B

1234567891011121314151617181920212223
  1. # -*- coding: utf-8 -*-
  2. """
  3. Tests of neo.io.neomatlabio
  4. """
  5. # needed for python 3 compatibility
  6. from __future__ import absolute_import, division
  7. import unittest
  8. from neo.test.iotest.common_io_test import BaseTestIO
  9. from neo.io.neomatlabio import NeoMatlabIO, HAVE_SCIPY
  10. @unittest.skipUnless(HAVE_SCIPY, "requires scipy")
  11. class TestNeoMatlabIO(BaseTestIO, unittest.TestCase):
  12. ioclass = NeoMatlabIO
  13. files_to_test = []
  14. files_to_download = []
  15. if __name__ == "__main__":
  16. unittest.main()