test: Enforce more feature flags are present in MacVim

In particular, `clipboard_working` was broken upstream recently. This
helps catch the issue pre-emptively.
This commit is contained in:
Yee Cheng Chin
2025-10-26 19:51:19 -07:00
parent 3cca9ff898
commit 56fcd4155d
+2
View File
@@ -32,7 +32,9 @@ func Test_macvim_options_commands_exist()
call assert_true(has('transparency'), 'Missing feature "transparency"')
" Vim system-specific features that we expect to be on in macOS
call assert_true(has('clientserver'), 'Missing feature "clientserver"')
call assert_true(has('clipboard'), 'Missing feature "clipboard"')
call assert_true(has('clipboard_working'), 'Missing feature "clipboard_working"')
call assert_true(has('sound'), 'Missing feature "sound"')
call assert_true(has('terminal'), 'Missing feature "terminal"')
call assert_true(has('xim'), 'Missing feature "xim"')