We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2360dc commit 2205436Copy full SHA for 2205436
test/completion.bats
@@ -7,8 +7,9 @@
7
run zsh -c " \
8
export DEV_ROOT='$fake_root'; \
9
source \"$BATS_TEST_DIRNAME/../proj-jumper.plugin.zsh\"; \
10
+ autoload -Uz compinit && compinit; \
11
reply=(); \
- _proj_complete \"\"; \
12
+ _proj_complete ''; \
13
print -l \"\${reply[@]}\" \
14
"
15
test/proj_jump_success.bats
@@ -8,9 +8,9 @@
proj alpha; \
- pwd \
+ pwd -P \
[ "$status" -eq 0 ]
- [[ "$output" == "$fake_root/alpha" ]]
+ [[ "$output" == *"$fake_root/alpha"* ]]
16
}
0 commit comments