Changes between Version 1 and Version 2 of Ticket #32452
- Timestamp:
- Feb 16, 2021, 8:51:15 AM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #32452 – Description
v1 v2 17 17 Would you accept a patch to `Storage.save()`? 18 18 19 Background: I am writing a unittest which mocked away the storage calls to save() will put the data into the mock. 20 21 Then I check if the data is the way I want it. 22 23 Now it gets complicated again: I need to access the data which is inside `ContentFile` grrr. 24 25 This would be much easier if you could add strings/bytes to the `save()` directly.