(self, s, get_item)
| 107 | s.upload(item) |
| 108 | |
| 109 | def test_upload(self, s, get_item): |
| 110 | item = get_item() |
| 111 | href, etag = s.upload(item) |
| 112 | assert_item_equals(s.get(href)[0], item) |
| 113 | |
| 114 | def test_update(self, s, get_item): |
| 115 | item = get_item() |
nothing calls this directly
no test coverage detected