/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_string.py (610B)
import os import pytest from numpy.testing import assert_array_equal import numpy as np from . import util def _path(*a): return os.path.join(*((os.path.dirname(__file__),) + a)) class TestString(util.F2PyTest): sources = [_path('src', 'string', 'char.f90')] @pytest.mark.slow def test_char(self): strings = np.array(['ab', 'cd', 'ef'], dtype='c').T inp, out = self.module.char_test.change_strings(strings, strings.shape[1]) assert_array_equal(inp, strings) expected = strings.copy() expected[1, :] = 'AAA' assert_array_equal(out, expected)