summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-05-31 16:31:22 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-05-31 16:32:27 +0900
commit8b39df854d7dea1c15949c6b047bcb0f0a12c287 (patch)
tree41c7d32bc40c2e1dde5d7472d9f5aead2f6e20a2 /spec
parentb632566d339968bfd271a07e290a71bbb7f621ec (diff)
Let irb use an empty file as irbrc
to get rid of side-effect by existing .irbrc file.
Diffstat (limited to 'spec')
-rw-r--r--spec/ruby/core/binding/fixtures/irbrc1
-rw-r--r--spec/ruby/core/binding/irb_spec.rb3
2 files changed, 3 insertions, 1 deletions
diff --git a/spec/ruby/core/binding/fixtures/irbrc b/spec/ruby/core/binding/fixtures/irbrc
new file mode 100644
index 0000000000..2bc12af2f7
--- /dev/null
+++ b/spec/ruby/core/binding/fixtures/irbrc
@@ -0,0 +1 @@
+# empty configuration
diff --git a/spec/ruby/core/binding/irb_spec.rb b/spec/ruby/core/binding/irb_spec.rb
index dd3df0b28a..bd37b419f9 100644
--- a/spec/ruby/core/binding/irb_spec.rb
+++ b/spec/ruby/core/binding/irb_spec.rb
@@ -4,8 +4,9 @@ ruby_version_is "2.5" do
describe "Binding#irb" do
it "creates an IRB session with the binding in scope" do
irb_fixture = fixture __FILE__, "irb.rb"
+ irbrc_fixture = fixture __FILE__, "irbrc"
- out = IO.popen([*ruby_exe, irb_fixture], "r+") do |pipe|
+ out = IO.popen([{"IRBRC"=>irbrc_fixture}, *ruby_exe, irb_fixture], "r+") do |pipe|
pipe.puts "a ** 2"
pipe.puts "exit"
pipe.readlines.map(&:chomp)