(self)
| 36 | assert_(v == version, (vs, v)) |
| 37 | |
| 38 | def test_not_g77(self): |
| 39 | fc = numpy.distutils.fcompiler.new_fcompiler(compiler='gnu') |
| 40 | for vs, _ in gfortran_version_strings: |
| 41 | v = fc.version_match(vs) |
| 42 | assert_(v is None, (vs, v)) |
| 43 | |
| 44 | class TestGFortranVersions: |
| 45 | def test_gfortran_version(self): |
nothing calls this directly
no test coverage detected