tests/bemenu: test short form empty prompt

Issue came up in migration that we couldn't do a supported short form
empty string.

Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
Austin Horstman 2026-01-20 09:51:52 -06:00
parent 987271a659
commit 63a87808f5

View file

@ -3,7 +3,7 @@
enable = true;
settings = {
line-height = 28;
prompt = "open";
p = "";
ignorecase = true;
fb = "#1e1e2e";
ff = "#cdd6f4";
@ -22,6 +22,6 @@
nmt.script = ''
assertFileExists home-path/etc/profile.d/hm-session-vars.sh
assertFileContains home-path/etc/profile.d/hm-session-vars.sh \
"export BEMENU_OPTS=\"--ab '#1e1e2e' --af '#cdd6f4' --fb '#1e1e2e' --ff '#cdd6f4' --hb '#1e1e2e' --hf '#f9e2af' --ignorecase --line-height 28 --nb '#1e1e2e' --nf '#cdd6f4' --prompt open --tb '#1e1e2e' --tf '#f38ba8' --width-factor 0.300000\""
"export BEMENU_OPTS=\"--ab '#1e1e2e' --af '#cdd6f4' --fb '#1e1e2e' --ff '#cdd6f4' --hb '#1e1e2e' --hf '#f9e2af' --ignorecase --line-height 28 --nb '#1e1e2e' --nf '#cdd6f4' -p ''' --tb '#1e1e2e' --tf '#f38ba8' --width-factor 0.300000\""
'';
}