summaryrefslogtreecommitdiffstatshomepage
path: root/test/functional/lua/base64_spec.lua
AgeCommit message (Collapse)AuthorFiles
2024-04-23test: improve test conventionsdundargoc1
Specifically, functions that are run in the context of the test runner are put in module `test/testutil.lua` while the functions that are run in the context of the test session are put in `test/functional/testnvim.lua`. Closes https://github.com/neovim/neovim/issues/27004.
2024-04-15fix(base64): properly handle embedded NULLs when decoding (#28349)Gregory Anders1
2024-04-10refactor(test): inject after_each differentlyLewis Russell1
2024-04-08test: improve test conventionsdundargoc1
Work on https://github.com/neovim/neovim/issues/27004.
2024-01-03refactor: format test/*Justin M. Keyes1
2023-10-31feat(stdlib): add vim.base64 module (#25843)Gregory Anders1
Add base64 encode() and decode() functions to a vim.base64 module.