summaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
authorHiroshi SHIBATA <[email protected]>2024-11-14 17:42:20 +0900
committerHiroshi SHIBATA <[email protected]>2024-11-15 08:16:03 +0900
commit1063b5a140370a6c43b0ae19e5abc72d74b68b75 (patch)
treefce862e9c7f8cf501d32db36b69ee1795a0443ca /tool
parentb44272fcb456bb723d3dfa3b3736a05a2cbf30b2 (diff)
Port test_warn_dash_gem.rb to RSpec example
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/12086
Diffstat (limited to 'tool')
-rwxr-xr-xtool/test_for_warn_bundled_gems/test.sh4
-rw-r--r--tool/test_for_warn_bundled_gems/test_warn_dash_gem.rb10
2 files changed, 0 insertions, 14 deletions
diff --git a/tool/test_for_warn_bundled_gems/test.sh b/tool/test_for_warn_bundled_gems/test.sh
index b528bd4ff5..33593d1b01 100755
--- a/tool/test_for_warn_bundled_gems/test.sh
+++ b/tool/test_for_warn_bundled_gems/test.sh
@@ -8,10 +8,6 @@ echo "* Show warning sub-feature like bigdecimal/util"
ruby test_warn_sub_feature.rb
echo
-echo "* Show warning dash gem like net/smtp"
-ruby test_warn_dash_gem.rb
-echo
-
echo "* Show warning when bundle exec with ruby and script"
bundle exec ruby test_warn_bundle_exec.rb
echo
diff --git a/tool/test_for_warn_bundled_gems/test_warn_dash_gem.rb b/tool/test_for_warn_bundled_gems/test_warn_dash_gem.rb
deleted file mode 100644
index 49c7d9be46..0000000000
--- a/tool/test_for_warn_bundled_gems/test_warn_dash_gem.rb
+++ /dev/null
@@ -1,10 +0,0 @@
-require "bundler"
-Bundler::Definition.no_lock = true
-
-require "bundler/inline"
-
-gemfile do
- source "https://rubygems.org"
-end
-
-require "net/smtp"