1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 02:10:05 +08:00
SpaceVim/test/plugin/mkdir.vader

18 lines
350 B
Plaintext
Raw Normal View History

2022-04-03 23:21:00 +08:00
Execute ( SpaceVim plugin: mkdir.vim ):
augroup mkdir_test
au!
autocmd BufWritePre * call SpaceVim#plugins#mkdir#CreateCurrent()
augroup END
let tempfile = tempname() . '/test/test'
exe 'e' tempfile
w
AssertEqual filereadable(tempfile), 1
bwipeout
unlet tempfile
augroup mkdir_test
au!
augroup END