Initialisation du repository de Beta
This commit is contained in:
commit
14985f6dbb
9469 changed files with 1903273 additions and 0 deletions
|
|
@ -0,0 +1,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
|
||||
Loading…
Add table
Add a link
Reference in a new issue