/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_size.py (1286B)
import os import pytest from numpy.testing import assert_equal from . import util def _path(*a): return os.path.join(*((os.path.dirname(__file__),) + a)) class TestSizeSumExample(util.F2PyTest): sources = [_path('src', 'size', 'foo.f90')] @pytest.mark.slow def test_all(self): r = self.module.foo([[]]) assert_equal(r, [0], repr(r)) r = self.module.foo([[1, 2]]) assert_equal(r, [3], repr(r)) r = self.module.foo([[1, 2], [3, 4]]) assert_equal(r, [3, 7], repr(r)) r = self.module.foo([[1, 2], [3, 4], [5, 6]]) assert_equal(r, [3, 7, 11], repr(r)) @pytest.mark.slow def test_transpose(self): r = self.module.trans([[]]) assert_equal(r.T, [[]], repr(r)) r = self.module.trans([[1, 2]]) assert_equal(r, [[1], [2]], repr(r)) r = self.module.trans([[1, 2, 3], [4, 5, 6]]) assert_equal(r, [[1, 4], [2, 5], [3, 6]], repr(r)) @pytest.mark.slow def test_flatten(self): r = self.module.flatten([[]]) assert_equal(r, [], repr(r)) r = self.module.flatten([[1, 2]]) assert_equal(r, [1, 2], repr(r)) r = self.module.flatten([[1, 2, 3], [4, 5, 6]]) assert_equal(r, [1, 2, 3, 4, 5, 6], repr(r))