tide/tests/_tide_item_git.test.fish

65 lines
976 B
Fish

# RUN: %fish %s
function _git
git $argv >/dev/null 2>&1
end
function _git_item
_tide_decolor (_tide_item_git)
end
# Create directory
set -l dir ~/gitItemTest
rm -rf $dir
mkdir -p $dir/{normal-repo, bare-repo}
# Not in git repo
cd $dir
_git_item # CHECK:
# -------- normal repo tests --------
cd ./normal-repo
_git init
_git branch -m main
# Branch
_git_item # CHECK: main
# .git dir
cd .git/
_git_item # CHECK: main
cd ..
# Untracked
touch foo
_git_item # CHECK: main ?1
# Staged
_git add foo
_git_item # CHECK: main +1
git config --local user.email "you@example.com"
git config --local user.name "Your Name"
_git commit -am 'Add foo'
# Dirty
echo hello >foo
_git_item # CHECK: main !1
# Stash
_git stash
_git_item # CHECK: main *1
_git stash pop
_git commit -am 'Append hello to foo'
# SHA
_git checkout HEAD~
_git_item # CHECK: {{@\w*}}
# -------- bare repo test --------
cd $dir/bare-repo
_git init --bare
_git branch -m main
_git_item # CHECK: main