(
self, testfunc, targfunc, testar, skipna, empty_targfunc=None, **kwargs
)
| 368 | ) |
| 369 | |
| 370 | def check_fun( |
| 371 | self, testfunc, targfunc, testar, skipna, empty_targfunc=None, **kwargs |
| 372 | ): |
| 373 | targar = testar |
| 374 | if testar.endswith("_nan") and hasattr(self, testar[:-4]): |
| 375 | targar = testar[:-4] |
| 376 | |
| 377 | testarval = getattr(self, testar) |
| 378 | targarval = getattr(self, targar) |
| 379 | self.check_fun_data( |
| 380 | testfunc, |
| 381 | targfunc, |
| 382 | testar, |
| 383 | testarval, |
| 384 | targarval, |
| 385 | skipna=skipna, |
| 386 | empty_targfunc=empty_targfunc, |
| 387 | **kwargs, |
| 388 | ) |
| 389 | |
| 390 | def check_funs( |
| 391 | self, |
no test coverage detected