fixup: fix failing tests
This commit is contained in:
parent
9433dbb762
commit
7ba7829a05
|
@ -43,13 +43,15 @@ luac.out
|
||||||
tags
|
tags
|
||||||
|
|
||||||
# helptags
|
# helptags
|
||||||
doc/tags
|
/doc/tags
|
||||||
|
|
||||||
# panvimdoc
|
# panvimdoc
|
||||||
/panvimdoc/
|
/panvimdoc/
|
||||||
|
|
||||||
# luacov
|
# luacov
|
||||||
luacov.report
|
/luacov.report
|
||||||
luacov.report.index
|
/luacov.report.index
|
||||||
luacov.stats
|
/luacov.stats
|
||||||
|
|
||||||
|
# tests
|
||||||
|
/tmp_home/
|
||||||
|
|
4
Makefile
4
Makefile
|
@ -13,7 +13,7 @@ test:
|
||||||
@export XDG_DATA_HOME='./tmp_home' && \
|
@export XDG_DATA_HOME='./tmp_home' && \
|
||||||
export XDG_CONFIG_HOME='./tmp_home' && \
|
export XDG_CONFIG_HOME='./tmp_home' && \
|
||||||
nvim --headless --noplugin --clean -u lua/tests/minimal_init.lua -c "lua require'plenary.test_harness'.test_directory( 'lua/tests/', { minimal_init = './lua/tests/minimal_init.lua' })"
|
nvim --headless --noplugin --clean -u lua/tests/minimal_init.lua -c "lua require'plenary.test_harness'.test_directory( 'lua/tests/', { minimal_init = './lua/tests/minimal_init.lua' })"
|
||||||
@rmdir tmp_home
|
@rm -rf tmp_home
|
||||||
|
|
||||||
# Install luacov & luacov-console from luarocks
|
# Install luacov & luacov-console from luarocks
|
||||||
testcov:
|
testcov:
|
||||||
|
@ -27,7 +27,7 @@ testcov:
|
||||||
ifeq ($(NOCLEAN), )
|
ifeq ($(NOCLEAN), )
|
||||||
@rm luacov.*
|
@rm luacov.*
|
||||||
endif
|
endif
|
||||||
@rmdir tmp_home
|
@rm -rf tmp_home
|
||||||
|
|
||||||
docgen:
|
docgen:
|
||||||
@bash ./scripts/docgen.sh
|
@bash ./scripts/docgen.sh
|
||||||
|
|
|
@ -347,7 +347,7 @@ describe('Location component', function()
|
||||||
component_separators = { left = '', right = '' },
|
component_separators = { left = '', right = '' },
|
||||||
padding = 0,
|
padding = 0,
|
||||||
}
|
}
|
||||||
assert_component('location', opts, '%3l:%-2c')
|
assert_component('location', opts, '%3l:%-2v')
|
||||||
end)
|
end)
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
@ -357,7 +357,7 @@ describe('Progress component', function()
|
||||||
component_separators = { left = '', right = '' },
|
component_separators = { left = '', right = '' },
|
||||||
padding = 0,
|
padding = 0,
|
||||||
}
|
}
|
||||||
assert_component('progress', opts, '%3P')
|
assert_component('progress', opts, '%3p%%')
|
||||||
end)
|
end)
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue