diff options
author | Hiroshi SHIBATA <[email protected]> | 2024-11-15 14:28:05 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2024-11-15 17:50:24 +0900 |
commit | 0afd77d76ac9eb0ad65b841dc8eb7b68d399a3cb (patch) | |
tree | 311eca9e891fc1fac0c6fe4a895d4244d1f9d071 /tool | |
parent | b4d8e90c2a9a6e6fd6d6e892a4b520a36ed131b6 (diff) |
Port test_warn_bootsnap.rb to RSpec example
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/12098
Diffstat (limited to 'tool')
-rwxr-xr-x | tool/test_for_warn_bundled_gems/test.sh | 4 | ||||
-rw-r--r-- | tool/test_for_warn_bundled_gems/test_warn_bootsnap.rb | 14 |
2 files changed, 0 insertions, 18 deletions
diff --git a/tool/test_for_warn_bundled_gems/test.sh b/tool/test_for_warn_bundled_gems/test.sh index 27efaad551..23e2a01189 100755 --- a/tool/test_for_warn_bundled_gems/test.sh +++ b/tool/test_for_warn_bundled_gems/test.sh @@ -1,9 +1,5 @@ #!/bin/bash -echo "* Show warning with bootsnap" -ruby test_warn_bootsnap.rb -echo - echo "* Show warning with bootsnap for gem with native extension" ruby test_warn_bootsnap_rubyarchdir_gem.rb echo diff --git a/tool/test_for_warn_bundled_gems/test_warn_bootsnap.rb b/tool/test_for_warn_bundled_gems/test_warn_bootsnap.rb deleted file mode 100644 index 230ed3ece9..0000000000 --- a/tool/test_for_warn_bundled_gems/test_warn_bootsnap.rb +++ /dev/null @@ -1,14 +0,0 @@ -require "bundler" -Bundler::Definition.no_lock = true - -require "bundler/inline" - -gemfile do - source "https://rubygems.org" - gem "bootsnap", require: false -end - -require 'bootsnap' -Bootsnap.setup(cache_dir: 'tmp/cache') - -require 'csv' |