summaryrefslogtreecommitdiff
path: root/tests/f2py_f90_ext/tests/test_foo.py
blob: da52c8aff84ad76f4250c96382d14078f626313c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import sys
from numpy.testing import *
set_package_path()
from f2py_f90_ext import foo
del sys.path[0]

class test_foo(NumpyTestCase):

    def check_foo_free(self):
        assert_equal(foo.foo_free.bar13(),13)

if __name__ == "__main__":
    NumpyTest().run()