We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e8bf09 commit 261f802Copy full SHA for 261f802
spec/bundler/commands/platform_spec.rb
@@ -941,6 +941,12 @@ def should_be_patchlevel_fixnum
941
942
context "bundle console", bundler: "< 3" do
943
before do
944
+ begin
945
+ require "irb"
946
+ rescue LoadError
947
+ skip "This spec requires IRB to be available"
948
+ end
949
+
950
install_gemfile <<-G
951
source "https://gem.repo1"
952
gem "myrack"
@@ -950,12 +956,6 @@ def should_be_patchlevel_fixnum
956
end
957
958
it "starts IRB with the default group loaded when ruby version matches", :readline do
953
- begin
954
- require "irb"
955
- rescue LoadError
- skip "This spec requires IRB to be available"
- end
-
959
gemfile <<-G
960
961
0 commit comments