Check the inspection methods
(self)
| 54 | ) |
| 55 | |
| 56 | def test_inspection(self): |
| 57 | """Check the inspection methods""" |
| 58 | # Check inspection methods |
| 59 | self._meta.get_name() |
| 60 | self._meta.get_uuid() |
| 61 | # Check dataframe |
| 62 | self.assertIsInstance(self._meta.export_results(), pd.DataFrame) |
| 63 | # Check Params |
| 64 | self.assertIsInstance(self._meta.export_params(), dict) |
| 65 | |
| 66 | def test_calculation(self): |
| 67 | """Run a calulate all.""" |
nothing calls this directly
no test coverage detected