mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 07:00:05 +08:00
11 lines
328 B
Plaintext
11 lines
328 B
Plaintext
Execute ( SpaceVim lua api: data#toml ):
|
|
if !has('nvim-0.7.2')
|
|
Log 'skip lua test'
|
|
finish
|
|
endif
|
|
let cmp = SpaceVim#api#import('vim#compatible')
|
|
lua sp_toml = require('spacevim.api').import('data.toml')
|
|
AssertEqual cmp.luaeval("sp_toml.parse_file('mode/basic.toml').options.colorscheme"), 'gruvbox'
|
|
|
|
|