(self)
| 30 | |
| 31 | class TestG77Versions: |
| 32 | def test_g77_version(self): |
| 33 | fc = numpy.distutils.fcompiler.new_fcompiler(compiler='gnu') |
| 34 | for vs, version in g77_version_strings: |
| 35 | v = fc.version_match(vs) |
| 36 | assert_(v == version, (vs, v)) |
| 37 | |
| 38 | def test_not_g77(self): |
| 39 | fc = numpy.distutils.fcompiler.new_fcompiler(compiler='gnu') |
nothing calls this directly
no test coverage detected