Merge branch 'main' into feat/color

This commit is contained in:
Barrett Ruth 2025-09-20 11:48:49 -04:00
commit 8e0b2bdb6c
11 changed files with 441 additions and 172 deletions

View file

@ -2,8 +2,10 @@ describe('cp.execute', function()
local execute
local mock_system_calls
local temp_files
local spec_helper = require('spec.spec_helper')
before_each(function()
spec_helper.setup()
execute = require('cp.execute')
mock_system_calls = {}
temp_files = {}
@ -60,6 +62,7 @@ describe('cp.execute', function()
after_each(function()
vim.system = vim.system_original or vim.system
spec_helper.teardown()
temp_files = {}
end)