view src/testdir/test_eval_func.vim @ 11227:9bfae04699c3 v8.0.0500

patch 8.0.0500: quotestar test is still a bit flaky commit https://github.com/vim/vim/commit/4889ad7c6cd46368f553cc1140ca17508e8beaaa Author: Bram Moolenaar <Bram@vim.org> Date: Tue Mar 21 18:02:41 2017 +0100 patch 8.0.0500: quotestar test is still a bit flaky Problem: Quotestar test is still a bit flaky. Solution: Add a slower check for v:version.
author Christian Brabandt <cb@256bit.org>
date Tue, 21 Mar 2017 18:15:04 +0100
parents 1a5ed2626b26
children 63b02fcf1361
line wrap: on
line source

" Vim script used in test_eval.in.  Needed for script-local function.

func! s:Testje()
  return "foo"
endfunc
let Bar = function('s:Testje')
$put ='s:Testje exists: ' . exists('s:Testje')
$put ='func s:Testje exists: ' . exists('*s:Testje')
$put ='Bar exists: ' . exists('Bar')
$put ='func Bar exists: ' . exists('*Bar')