# shellcheck shell=bash source "$BATS_TEST_DIRNAME/test_util.sh" setup_file() { test_util.setup_file } setup() { test_util.cd_test test_util.git_init git config user.name 'test' git config user.email 'test@example.com' printf '%s\n' 'A' > tmpfile git add . git commit -m 'test: add data A' git config user.name 'testagain' git config user.email 'testagain@example.com' printf '%s\n' 'B' > tmpfile git add . git commit -m 'test: add data B' # git config unset user.name # git config unset user.email } @test "output authors has email without any parameter" { run git authors assert_success local content=$(\ntestagain ' } @test "list authors has email defaultly" { run git authors --list assert_output $'test \ntestagain ' assert_success run git authors -l assert_output $'test \ntestagain ' assert_success } @test "list authors has no email" { run git authors --list --no-email assert_output $'test\ntestagain' assert_success run git authors -l --no-email assert_output $'test\ntestagain' assert_success }