(self)
| 652 | class test_GroupResult: |
| 653 | |
| 654 | def setup_method(self): |
| 655 | self.size = 10 |
| 656 | self.ts = self.app.GroupResult( |
| 657 | uuid(), make_mock_group(self.app, self.size), |
| 658 | ) |
| 659 | |
| 660 | @pytest.mark.usefixtures('depends_on_current_app') |
| 661 | def test_is_pickleable(self): |
nothing calls this directly
no test coverage detected