summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_blob.vim
AgeCommit message (Collapse)Author
2020-01-30patch 8.2.0184: blob test failsv8.2.0184Bram Moolenaar
Problem: Blob test fails. Solution: Check for different error when float feature is missing.
2020-01-30patch 8.2.0183: tests fail when the float feature is disabledv8.2.0183Bram Moolenaar
Problem: Tests fail when the float feature is disabled. Solution: Skip tests that don't work without float support.
2020-01-15patch 8.2.0121: filter() and map() on blob don't workv8.2.0121Bram Moolenaar
Problem: filter() and map() on blob don't work. Solution: Correct the code. (closes #5483)
2019-08-31patch 8.1.1953: more functions can be used as a methodv8.1.1953Bram Moolenaar
Problem: More functions can be used as a method. Solution: Allow more functions to be used as a method.
2019-07-12patch 8.1.1671: copying a blob may result in it being lockedv8.1.1671Bram Moolenaar
Problem: Copying a blob may result in it being locked. Solution: Reset v_lock. (Ken Takata, closes #4648)
2019-01-24patch 8.1.0802: negative index doesn't work for Blobv8.1.0802Bram Moolenaar
Problem: Negative index doesn't work for Blob. Solution: Make it work, add a test. (closes #3856)
2019-01-23patch 8.1.0798: changing a blob while iterating over it works strangelyv8.1.0798Bram Moolenaar
Problem: Changing a blob while iterating over it works strangely. Solution: Make a copy of the Blob before iterating.
2019-01-22patch 8.1.0793: incorrect error messages for functions that take a Blobv8.1.0793Bram Moolenaar
Problem: Incorrect error messages for functions that now take a Blob argument. Solution: Adjust the error messages. (Dominique Pelle, closes #3846)
2019-01-17patch 8.1.0765: string format of a Blob can't be parsed backv8.1.0765Bram Moolenaar
Problem: String format of a Blob can't be parsed back. Solution: Use 0z format.
2019-01-15patch 8.1.0756: copy() does not make a copy of a Blobv8.1.0756Bram Moolenaar
Problem: copy() does not make a copy of a Blob. Solution: Make a copy.
2019-01-15patch 8.1.0755: error message for get() on a Blob with invalid indexv8.1.0755Bram Moolenaar
Problem: Error message for get() on a Blob with invalid index. Solution: Return an empty Blob, like get() on a List does.
2019-01-13patch 8.1.0742: not all Blob operations are testedv8.1.0742Bram Moolenaar
Problem: Not all Blob operations are tested. Solution: Add more testing for Blob.
2019-01-13patch 8.1.0736: code for Blob not sufficiently testedv8.1.0736Bram Moolenaar
Problem: Code for Blob not sufficiently tested. Solution: Add more tests. Fix uncovered crash. Add test_null_blob().
2019-01-12patch 8.1.0735: cannot handle binary datav8.1.0735Bram Moolenaar
Problem: Cannot handle binary data. Solution: Add the Blob type. (Yasuhiro Matsumoto, closes #3638)