Hacktoberfest 2026: những issue maintainer đã đánh dấu cho tháng Mười, đang mở và phù hợp người mới. Xem issue Hacktoberfest

Debug gem conflict with rspec mocks

Đang mở
#1,154 2 bình luận 0 reaction 0 người được giao Xem trên GitHub

Chưa có ai nhận issue này.

Đánh giá

Độ khó
3/5
Thời gian dự kiến
1-2 ngày
Mức phù hợp với người mới
45/100
Loại issue
Lỗi
Độ rõ ràng
Khá rõ ràng
Mức độ hoạt động
Đình trệ
Công nghệ
ruby
Lĩnh vực
devtools

Hướng nghiên cứu

Start with lib/debug/source_repository.rb:38 and run the Ruby 3.3.7 reproduction from the issue with debug 1.11.0 and RSpec. Trace how the File.exist? call interacts with the configured mock. Done means the reproduction passes without mock expectation errors while preserving the source repository behavior.

Do mô hình lập chỉ mục viết ra từ nội dung của issue.

Mô tả

Your environment

  • ruby -v: ruby 3.3.7
  • rdbg -v: 1.11.0

Describe the bug
The debug gem's method in debug/source_repository.rb:38 calls File.exist?, which interferes with RSpec mocks that stub this method for specific file paths. This causes test failures with mock expectation errors when the debug gem is loaded during test execution.

To Reproduce

system('gem install bundler') unless Gem::Specification::find_all_by_name('bundler').any?
require 'bundler/inline'

gemfile(true) do
  source 'https://rubygems.org'
  gem 'rspec'
  gem 'debug', '~> 1.11.0'
end

require 'rspec'
require 'debug'

class MyClass
  def check_if_file_exist?(path)
    File.exist?(path)
  end
end

RSpec.describe "debug gem + File.exist? conflict" do
  let(:target_path) { "config/session_store.yml" }

  let(:my_class) { MyClass.new }

  before do
    allow(File).to receive(:exist?).with(target_path).and_return(true)
  end

  it "stubs File.exist? and avoids debug interference" do
    result = my_class.check_if_file_exist?(target_path)

    expect(result).to be true
  end
end

RSpec::Core::Runner.run([])

Expected behavior
A clear and concise description of what you expected to happen.

  • The test should pass
Ngôn ngữ chính
Ruby
Star
1.3k
Fork
146
Chỉ số merge pull request
Không có pull request nào được merge trong 30 ngày

Hướng dẫn đóng góp

Mở hướng dẫn đóng góp

Bắt đầu từ đâu

  1. Đọc hết issue, rồi đọc hướng dẫn đóng góp của dự án.
  2. Bình luận trên issue rằng bạn sẽ nhận — tránh hai người làm cùng một việc.
  3. Fork repository và làm thay đổi trên một nhánh.
  4. Mở pull request có tham chiếu số hiệu của issue.

Issue khác của ruby/debug

Tất cả issue của ruby/debug

Issue tương tự

Thêm issue về Ruby

Nhận issue mới trong hộp thư của bạn

Bản tóm tắt ngắn những issue GitHub phù hợp với người mới.