(collection='test')
| 13 | @pytest.fixture |
| 14 | def get_storage_args(self, tmpdir): |
| 15 | def inner(collection='test'): |
| 16 | rv = {'path': str(tmpdir.join('%s.txt')), |
| 17 | 'collection': collection} |
| 18 | if collection is not None: |
| 19 | rv = self.storage_class.create_collection(**rv) |
| 20 | return rv |
| 21 | return inner |
nothing calls this directly
no test coverage detected