diff options
author | Bob Eldering <eldering@jive.eu> | 2017-06-13 16:05:12 +0200 |
---|---|---|
committer | Bob Eldering <eldering@jive.eu> | 2017-06-13 16:05:12 +0200 |
commit | 8042526ba48c6d817d32300c1ecbea95d395c62e (patch) | |
tree | 008bf657fd5d6feffdfa9848a18e0acdc3d9d1aa /numpy/f2py/tests/test_common.py | |
parent | dc063adb3d515971e492ffdd163bb07a9529b54a (diff) | |
download | numpy-8042526ba48c6d817d32300c1ecbea95d395c62e.tar.gz |
TST: add test case described in ticket 9228 for numpy.f2py
Diffstat (limited to 'numpy/f2py/tests/test_common.py')
-rw-r--r-- | numpy/f2py/tests/test_common.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/numpy/f2py/tests/test_common.py b/numpy/f2py/tests/test_common.py new file mode 100644 index 000000000..027d558aa --- /dev/null +++ b/numpy/f2py/tests/test_common.py @@ -0,0 +1,26 @@ +from __future__ import division, absolute_import, print_function + +import os + +from numpy.testing import run_module_suite, assert_array_equal, dec +import numpy as np +import util + + +def _path(*a): + return os.path.join(*((os.path.dirname(__file__),) + a)) + +class TestCommonBlock(util.F2PyTest): + sources = [_path('src', 'common', 'block.f')] + + def test_common_block(self): + self.module.initcb() + assert_array_equal(self.module.block.long_bn, + np.array(1.0, dtype=np.float64)) + assert_array_equal(self.module.block.string_bn, + np.array('2', dtype='|S1')) + assert_array_equal(self.module.block.ok, + np.array(3, dtype=np.int32)) + +if __name__ == "__main__": + run_module_suite() |