spacevim/bundle/VimRegStyle/test/001_numbers_integers.vim
JIe 2bb7059579
Some checks failed
Detach Plugins / check (FlyGrep.vim) (push) Has been cancelled
Detach Plugins / check (GitHub.vim) (push) Has been cancelled
Detach Plugins / check (JavaUnit.vim) (push) Has been cancelled
Detach Plugins / check (SourceCounter.vim) (push) Has been cancelled
Detach Plugins / check (cpicker.nvim) (push) Has been cancelled
Detach Plugins / check (dein-ui.vim) (push) Has been cancelled
Detach Plugins / check (git.vim) (push) Has been cancelled
Detach Plugins / check (iedit.vim) (push) Has been cancelled
Detach Plugins / check (scrollbar.vim) (push) Has been cancelled
Detach Plugins / check (vim-chat) (push) Has been cancelled
Detach Plugins / check (vim-cheat) (push) Has been cancelled
Detach Plugins / check (vim-todo) (push) Has been cancelled
Detach Plugins / check (xmake.vim) (push) Has been cancelled
test / Linux (nvim, nightly) (push) Has been cancelled
test / Linux (nvim, v0.3.8) (push) Has been cancelled
test / Linux (nvim, v0.4.0) (push) Has been cancelled
test / Linux (nvim, v0.4.2) (push) Has been cancelled
test / Linux (nvim, v0.4.3) (push) Has been cancelled
test / Linux (nvim, v0.4.4) (push) Has been cancelled
test / Linux (nvim, v0.5.0) (push) Has been cancelled
test / Linux (nvim, v0.5.1) (push) Has been cancelled
test / Linux (nvim, v0.6.0) (push) Has been cancelled
test / Linux (nvim, v0.6.1) (push) Has been cancelled
test / Linux (nvim, v0.7.0) (push) Has been cancelled
test / Linux (nvim, v0.7.2) (push) Has been cancelled
test / Linux (nvim, v0.8.0) (push) Has been cancelled
test / Linux (nvim, v0.8.1) (push) Has been cancelled
test / Linux (nvim, v0.8.2) (push) Has been cancelled
test / Linux (nvim, v0.8.3) (push) Has been cancelled
test / Linux (nvim, v0.9.0) (push) Has been cancelled
test / Linux (nvim, v0.9.1) (push) Has been cancelled
test / Linux (true, vim, v7.4.052) (push) Has been cancelled
test / Linux (true, vim, v7.4.1689) (push) Has been cancelled
test / Linux (true, vim, v7.4.629) (push) Has been cancelled
test / Linux (true, vim, v8.0.0027) (push) Has been cancelled
test / Linux (true, vim, v8.0.0183) (push) Has been cancelled
test / Linux (vim, nightly) (push) Has been cancelled
test / Linux (vim, v8.0.0184) (push) Has been cancelled
test / Linux (vim, v8.0.1453) (push) Has been cancelled
test / Linux (vim, v8.1.2269) (push) Has been cancelled
test / Linux (vim, v8.2.2434) (push) Has been cancelled
test / Linux (vim, v8.2.3995) (push) Has been cancelled
test / Windows (nvim, nightly) (push) Has been cancelled
test / Windows (nvim, v0.3.8) (push) Has been cancelled
test / Windows (nvim, v0.4.2) (push) Has been cancelled
test / Windows (nvim, v0.4.3) (push) Has been cancelled
test / Windows (nvim, v0.4.4) (push) Has been cancelled
test / Windows (nvim, v0.5.0) (push) Has been cancelled
test / Windows (nvim, v0.5.1) (push) Has been cancelled
test / Windows (nvim, v0.6.0) (push) Has been cancelled
test / Windows (nvim, v0.6.1) (push) Has been cancelled
test / Windows (nvim, v0.7.0) (push) Has been cancelled
test / Windows (nvim, v0.7.2) (push) Has been cancelled
test / Windows (nvim, v0.8.0) (push) Has been cancelled
test / Windows (nvim, v0.8.1) (push) Has been cancelled
test / Windows (nvim, v0.8.2) (push) Has been cancelled
test / Windows (nvim, v0.8.3) (push) Has been cancelled
test / Windows (nvim, v0.9.0) (push) Has been cancelled
test / Windows (nvim, v0.9.1) (push) Has been cancelled
test / Windows (vim, nightly) (push) Has been cancelled
test / Windows (vim, v7.4.1185) (push) Has been cancelled
test / Windows (vim, v7.4.1689) (push) Has been cancelled
test / Windows (vim, v8.0.0027) (push) Has been cancelled
test / Windows (vim, v8.0.1453) (push) Has been cancelled
test / Windows (vim, v8.1.2269) (push) Has been cancelled
test / Windows (vim, v8.2.2434) (push) Has been cancelled
test / Windows (vim, v8.2.3995) (push) Has been cancelled
docker / docker (push) Has been cancelled
mirror / check (coding) (push) Has been cancelled
mirror / check (gitee) (push) Has been cancelled
mirror / check (gitlab) (push) Has been cancelled
init
2024-08-21 14:17:26 +08:00

65 lines
4.2 KiB
VimL

call vimtest#StartTap()
call vimtap#Plan(8 + 13 + 7 + 7 + 7 + 7) " <== XXX Keep plan number updated. XXX
" hundredths vim \<\%(\d\|[1-9]\d\)\>
" z_hundredths vim \<\d\{2}\>
" thousandths vim \<\%(\%{hundredths}\|[1-9]\d\d\)\>
" z_thousandths vim \<\d\{3}\>
call vimtap#Is(vrs#exactly('0', 'natural'), 1, 'natural - int')
call vimtap#Is(vrs#exactly('1', 'natural'), 1, 'natural - int')
call vimtap#Is(vrs#exactly('99', 'natural'), 1, 'natural - int')
call vimtap#Is(vrs#exactly('123', 'natural'), 1, 'natural - int')
call vimtap#Is(vrs#exactly('+1', 'natural'), 1, 'natural + posint')
call vimtap#Is(vrs#exactly('-1', 'natural'), 0, 'natural - negint')
call vimtap#Is(vrs#exactly('', 'natural'), 0, 'natural - empty')
call vimtap#Is(vrs#exactly('a', 'natural'), 0, 'natural - char')
call vimtap#Is(vrs#exactly('0', 'integer'), 1, 'integer + int')
call vimtap#Is(vrs#exactly('1', 'integer'), 1, 'integer + int')
call vimtap#Is(vrs#exactly('99', 'integer'), 1, 'integer + int')
call vimtap#Is(vrs#exactly('123', 'integer'), 1, 'integer + int')
call vimtap#Is(vrs#exactly('-1', 'integer'), 1, 'integer + negint')
call vimtap#Is(vrs#exactly('-99', 'integer'), 1, 'integer + negint')
call vimtap#Is(vrs#exactly('-123', 'integer'), 1, 'integer + negint')
call vimtap#Is(vrs#exactly('+1', 'integer'), 1, 'integer + posint')
call vimtap#Is(vrs#exactly('+99', 'integer'), 1, 'integer + posint')
call vimtap#Is(vrs#exactly('+123', 'integer'), 1, 'integer + posint')
call vimtap#Is(vrs#exactly('', 'integer'), 0, 'integer - empty')
call vimtap#Is(vrs#exactly('a', 'integer'), 0, 'integer - char')
call vimtap#Is(vrs#exactly('1.0', 'integer'), 0, 'integer - float')
call vimtap#Is(vrs#exactly('0', 'hundredths'), 1, 'hundredths - int 0')
call vimtap#Is(vrs#exactly('1', 'hundredths'), 1, 'hundredths - int 1')
call vimtap#Is(vrs#exactly('22', 'hundredths'), 1, 'hundredths - int 22')
call vimtap#Is(vrs#exactly('99', 'hundredths'), 1, 'hundredths - upperbound int 99')
call vimtap#Is(vrs#exactly('100', 'hundredths'), 0, 'hundredths - overbounds')
call vimtap#Is(vrs#exactly('', 'hundredths'), 0, 'hundredths - empty')
call vimtap#Is(vrs#exactly('a', 'hundredths'), 0, 'hundredths - char')
call vimtap#Is(vrs#exactly('00', 'z_hundredths'), 1, 'z_hundredths - int 00')
call vimtap#Is(vrs#exactly('01', 'z_hundredths'), 1, 'z_hundredths - int 01')
call vimtap#Is(vrs#exactly('22', 'z_hundredths'), 1, 'z_hundredths - int 22')
call vimtap#Is(vrs#exactly('99', 'z_hundredths'), 1, 'z_hundredths - upperbound int 99')
call vimtap#Is(vrs#exactly('100', 'z_hundredths'), 0, 'z_hundredths - overbounds')
call vimtap#Is(vrs#exactly('', 'z_hundredths'), 0, 'z_hundredths - empty')
call vimtap#Is(vrs#exactly('a', 'z_hundredths'), 0, 'z_hundredths - char')
call vimtap#Is(vrs#exactly('0', 'thousandths'), 1, 'thousandths - int 0')
call vimtap#Is(vrs#exactly('333', 'thousandths'), 1, 'thousandths - int 333')
call vimtap#Is(vrs#exactly('999', 'thousandths'), 1, 'thousandths - upperbound int 999')
call vimtap#Is(vrs#exactly('1', 'thousandths'), 1, 'thousandths - int 1')
call vimtap#Is(vrs#exactly('1000', 'thousandths'), 0, 'thousandths - overbounds')
call vimtap#Is(vrs#exactly('', 'thousandths'), 0, 'thousandths - empty')
call vimtap#Is(vrs#exactly('a', 'thousandths'), 0, 'thousandths - char')
call vimtap#Is(vrs#exactly('000', 'z_thousandths'), 1, 'z_thousandths - int 000')
call vimtap#Is(vrs#exactly('333', 'z_thousandths'), 1, 'z_thousandths - int 333')
call vimtap#Is(vrs#exactly('999', 'z_thousandths'), 1, 'z_thousandths - upperbound int 999')
call vimtap#Is(vrs#exactly('001', 'z_thousandths'), 1, 'z_thousandths - int 001')
call vimtap#Is(vrs#exactly('1000', 'z_thousandths'), 0, 'z_thousandths - overbounds')
call vimtap#Is(vrs#exactly('', 'z_thousandths'), 0, 'z_thousandths - empty')
call vimtap#Is(vrs#exactly('a', 'z_thousandths'), 0, 'z_thousandths - char')
call vimtest#Quit()