mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-14 04:52:46 +08:00
![Fabian Boehm](/assets/img/avatar_default.png)
This replaces the test_driver.sh/test.fish/interactive.fish system with a test driver written in python that calls into littlecheck directly and runs pexpect in a subprocess. This means we reduce the reliance on the fish that we're testing, and we remove a posix sh script that is a weird stumbling block (see my recent quest to make it work on directories with spaces). To run specific tests, e.g. all the tmux tests and bind.py: tests/test_driver.py target/release/ tests/checks/tmux*.fish tests/pexpects/bind.py
33 lines
994 B
Fish
33 lines
994 B
Fish
#RUN: %fish --interactive %s
|
|
# ^ interactive so we can do `complete`
|
|
mkdir -p __fish_complete_directories/
|
|
cd __fish_complete_directories
|
|
mkdir -p test/buildroot
|
|
mkdir -p test/fish_expand_test
|
|
mkdir -p test/data/abc
|
|
mkdir -p test/data/abcd
|
|
touch test/data/af
|
|
touch test/data/abcdf
|
|
mkdir -p test/data/xy
|
|
mkdir -p test/data/xyz
|
|
touch test/data/xyf
|
|
touch test/data/xyzf
|
|
__fish_complete_directories test/z
|
|
# No match - no output!
|
|
__fish_complete_directories test/d
|
|
#CHECK: test/data/ Directory
|
|
__fish_complete_directories test/data
|
|
#CHECK: test/data/ Directory
|
|
__fish_complete_directories test/data/
|
|
#CHECK: test/data/abc/ Directory
|
|
#CHECK: test/data/abcd/ Directory
|
|
#CHECK: test/data/xy/ Directory
|
|
#CHECK: test/data/xyz/ Directory
|
|
__fish_complete_directories test/data/abc 'abc dirs'
|
|
#CHECK: test/data/abc/ abc dirs
|
|
#CHECK: test/data/abcd/ abc dirs
|
|
|
|
complete -c mydirs -l give-me-dir -a '(__fish_complete_directories)'
|
|
complete -C'mydirs --give-me-dir='
|
|
#CHECK: --give-me-dir=test/{{\t}}Directory
|