Skip to content

Commit 56fcd41

Browse files
committed
test: Enforce more feature flags are present in MacVim
In particular, `clipboard_working` was broken upstream recently. This helps catch the issue pre-emptively.
1 parent 3cca9ff commit 56fcd41

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/testdir/test_macvim.vim

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ func Test_macvim_options_commands_exist()
3232
call assert_true(has('transparency'), 'Missing feature "transparency"')
3333

3434
" Vim system-specific features that we expect to be on in macOS
35+
call assert_true(has('clientserver'), 'Missing feature "clientserver"')
3536
call assert_true(has('clipboard'), 'Missing feature "clipboard"')
37+
call assert_true(has('clipboard_working'), 'Missing feature "clipboard_working"')
3638
call assert_true(has('sound'), 'Missing feature "sound"')
3739
call assert_true(has('terminal'), 'Missing feature "terminal"')
3840
call assert_true(has('xim'), 'Missing feature "xim"')

0 commit comments

Comments
 (0)