(self)
| 36 | self.s = solar('sunrise', 60, 30, app=self.app) |
| 37 | |
| 38 | def test_reduce(self): |
| 39 | fun, args = self.s.__reduce__() |
| 40 | assert fun(*args) == self.s |
| 41 | |
| 42 | def test_eq(self): |
| 43 | assert self.s == solar('sunrise', 60, 30, app=self.app) |
nothing calls this directly
no test coverage detected