/usr/local/lib64/python3.6/site-packages/numpy/f2py/tests
NameSizeModeActions
src/-0755rm
__pycache__/-0755rm
test_array_from_pyobj.py219770644editdlrm
test_assumed_shape.py15840644editdlrm
test_block_docstring.py6210644editdlrm
test_callback.py39870644editdlrm
test_common.py8020644editdlrm
test_compile_function.py43090644editdlrm
test_crackfortran.py27970644editdlrm
test_kind.py10120644editdlrm
test_mixed.py9110644editdlrm
test_parameter.py39100644editdlrm
test_quoted_character.py9270644editdlrm
test_regression.py6980644editdlrm
test_return_character.py39190644editdlrm
test_return_complex.py46150644editdlrm
test_return_integer.py45760644editdlrm
test_return_logical.py48430644editdlrm
test_return_real.py54020644editdlrm
test_semicolon_split.py15140644editdlrm
test_size.py12860644editdlrm
test_string.py6100644editdlrm
util.py96130644editdlrm
__init__.py00644editdlrm
Edit: /usr/local/lib64/python3.6/site-packages/numpy/f2py/tests/test_common.py (802B)
import os import sys import pytest import numpy as np from . import util from numpy.testing import assert_array_equal def _path(*a): return os.path.join(*((os.path.dirname(__file__),) + a)) class TestCommonBlock(util.F2PyTest): sources = [_path('src', 'common', 'block.f')] @pytest.mark.skipif(sys.platform=='win32', reason='Fails with MinGW64 Gfortran (Issue #9673)') 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))