File: //usr/local/rvm/gems/ruby-2.6.8@global/gems/rubygems-bundler-1.4.5/test/dtf/bundler_comment_test.sh
: init
export NOEXEC_DEBUG=1
export BUNDLE_GEMFILE=${TMPDIR:-/tmp}/rubygems-bunelr_bundler-test/Gemfile
rm -rf ${BUNDLE_GEMFILE%/*}
mkdir -p ${BUNDLE_GEMFILE%/*} # status=0
printf "source 'https://rubygems.org'\n\ngem 'haml'\n" | tee ${BUNDLE_GEMFILE}
yes | sm gem install # match=/installed/
gem regenerate_binstubs # status=0
gem install bundler --pre # status=0
bundle install # status=0
: exclusion
head -n 1 "$(which haml)" # match=/env ruby_executable_hooks/
haml --version # match=/Keeping .*/rubygems-bunelr_bundler-test/Gemfile loaded/; match!=/Binary excluded by config/
printf "exclude:\n - haml\n" > ${BUNDLE_GEMFILE%/*}/.noexec.yaml
haml --version # match!=/Keeping .*/rubygems-bunelr_bundler-test/Gemfile loaded/; match=/Binary excluded by config/
: generated/removed
head -n 1 "$(which haml)" # match=/env ruby_executable_hooks/
which ruby_executable_hooks # status=0
gem list # match=/haml/
executable-hooks-uninstaller # match=/haml/
head -n 1 "$(which haml)" # match!=/env ruby_executable_hooks/
which ruby_executable_hooks # status=1
gem uninstall -ax haml # match=/Successfully uninstalled/
rm -rf ${BUNDLE_GEMFILE%/*} # status=0