1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
import pytest
from . import util
@pytest.mark.slow
class TestRenamedFunc(util.F2PyTest):
sources = [
util.getpath("tests", "src", "routines", "funcfortranname.f"),
util.getpath("tests", "src", "routines", "funcfortranname.pyf"),
]
module_name = "funcfortranname"
def test_gh25799(self):
assert dir(self.module)
assert self.module.funcfortranname_default(200, 12) == 212
@pytest.mark.slow
class TestRenamedSubroutine(util.F2PyTest):
sources = [
util.getpath("tests", "src", "routines", "subrout.f"),
util.getpath("tests", "src", "routines", "subrout.pyf"),
]
module_name = "subrout"
def test_renamed_subroutine(self):
assert dir(self.module)
assert self.module.subrout_default(200, 12) == 212
|