mirror of
https://github.com/neovim/neovim
synced 2025-07-16 01:01:49 +00:00
vim-patch:9.1.1404: wrong link to Chapter 2 in new-tutor
Problem: wrong link to Chapter 2 in vim-01-beginner.tutor
Solution: Fix the link to Chapter 2, add test for links in tutor files
(Phạm Bình An)
In order to write the test, I exposed the function `s:GlobTutorials` as
`tutor#GlobTutorials` and make it also accept a `locale` argument.
closes: vim/vim#17356
e8302da74a
Co-authored-by: Phạm Bình An <111893501+brianhuster@users.noreply.github.com>
This commit is contained in:
@ -14,3 +14,21 @@ func Test_auto_enable_interactive()
|
||||
call assert_true(empty(&buftype))
|
||||
call assert_match('tutor#EnableInteractive', b:undo_ftplugin)
|
||||
endfunc
|
||||
|
||||
func Test_tutor_link()
|
||||
let tutor_files = globpath($VIMRUNTIME, 'tutor/**/*.tutor', 0, 1)
|
||||
let pattern = '\[.\{-}@tutor:\zs[^)\]]*\ze[)\]]'
|
||||
|
||||
for tutor_file in tutor_files
|
||||
let lang = fnamemodify(tutor_file, ':h:t')
|
||||
if lang == 'tutor'
|
||||
let lang = 'en'
|
||||
endif
|
||||
|
||||
let text = readfile(tutor_file)
|
||||
let links = matchstrlist(text, pattern)->map({_, v -> v.text})
|
||||
for link in links
|
||||
call assert_true(tutor#GlobTutorials(link, lang)->len() > 0)
|
||||
endfor
|
||||
endfor
|
||||
endfunc
|
||||
|
Reference in New Issue
Block a user