diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-02-05 01:11:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-05 01:11:06 +0100 |
commit | bb2f36d038ccb375249a078997f68840ddcc66ef (patch) | |
tree | a080d374a6b38607806ca553d00b2d3e8b590c36 /test/functional/options | |
parent | 3d3b1641d0cae3244c09d4602ab96d290dd0928a (diff) | |
parent | 18127f64c421a2c4da100a9e40d49c31a9a5170a (diff) | |
download | rneovim-bb2f36d038ccb375249a078997f68840ddcc66ef.tar.gz rneovim-bb2f36d038ccb375249a078997f68840ddcc66ef.tar.bz2 rneovim-bb2f36d038ccb375249a078997f68840ddcc66ef.zip |
Merge #6038 from justinmk/win32-executable
win: executable()
Diffstat (limited to 'test/functional/options')
-rw-r--r-- | test/functional/options/defaults_spec.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/functional/options/defaults_spec.lua b/test/functional/options/defaults_spec.lua index caeca5e4e2..f3328886b5 100644 --- a/test/functional/options/defaults_spec.lua +++ b/test/functional/options/defaults_spec.lua @@ -96,6 +96,10 @@ describe('startup defaults', function() eq(meths.get_option('runtimepath'), meths.get_option('packpath')) end) end) + + it('v:progpath is set to the absolute path', function() + eq(eval("fnamemodify(v:progpath, ':p')"), eval('v:progpath')) + end) end) describe('XDG-based defaults', function() |