(self)
| 42 | assert self.module.mycom.mydata == 0 |
| 43 | |
| 44 | def test_crackedlines(self): |
| 45 | mod = crackfortran(str(self.sources[0])) |
| 46 | print(mod[0]['vars']) |
| 47 | assert mod[0]['vars']['mydata']['='] == '0' |
| 48 | |
| 49 | |
| 50 | class TestDataMultiplierF77(util.F2PyTest): |
nothing calls this directly
no test coverage detected