summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2025-03-10 11:38:13 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2025-03-10 12:43:36 +0900
commitafbc6649cd98226a1f221d87fc289dad2458a490 (patch)
tree0e015ddf0bd5ca90160488e7cd28a244148f3e47
parentce4abf2a2b22b39d3653045e0b5351a27669ecbf (diff)
Revert "Omit irb related examples temporary"
This reverts commit 750e6195040ec3f9d0b172ac1a49a49d9b7d8ba0.
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/12890
-rw-r--r--spec/bundler/commands/console_spec.rb6
-rw-r--r--spec/bundler/commands/platform_spec.rb6
2 files changed, 0 insertions, 12 deletions
diff --git a/spec/bundler/commands/console_spec.rb b/spec/bundler/commands/console_spec.rb
index fbeec8fe55..dd7461ced4 100644
--- a/spec/bundler/commands/console_spec.rb
+++ b/spec/bundler/commands/console_spec.rb
@@ -2,12 +2,6 @@
RSpec.describe "bundle console", readline: true do
before :each do
- begin
- require "irb"
- rescue LoadError
- skip "This spec requires IRB to be available"
- end
-
build_repo2 do
# A minimal fake pry console
build_gem "pry" do |s|
diff --git a/spec/bundler/commands/platform_spec.rb b/spec/bundler/commands/platform_spec.rb
index 7f740e305b..6e0a02bcf0 100644
--- a/spec/bundler/commands/platform_spec.rb
+++ b/spec/bundler/commands/platform_spec.rb
@@ -950,12 +950,6 @@ G
end
it "starts IRB with the default group loaded when ruby version matches", :readline do
- begin
- require "irb"
- rescue LoadError
- skip "This spec requires IRB to be available"
- end
-
gemfile <<-G
source "https://gem.repo1"
gem "myrack"