Heads up: Byebug has problems with zeitwerk
I encountered a unlucky behavior of byebug 11.1.3 (the most recent version at time of writing) when using it with Rails 6 and it's new autoloading component, zeitwerk. There already is a issue Archive for that, so I hope it will be fixed with a future release.
The following test succeeds:
Copycontext 'factories' do let(:test_case) { FactoryBot.create(:test_case) } it 'are valid' do expect(test_case).to be_valid end end
But when I did the same in byebug the following happened:
Copy(byebug) FactoryBot.create(:test_case) *** NameError Exception: uninitialized constant #<Class:0x000055580a8e7918>::TargetLimitation Did you mean? TargetsTestScenario
It seems like Byebug does not work well with zeitwerk. There is already a patch in
Ruby 3.1
Archive
, that would allow Byebug to solve the issue. But at the time of writing only
ruby/debug
Archive
implemented the fix and uses TracePoint.allow_reentry
. The
issue for Byebug
Archive
is still open.
Solutions
Good: Use a different debugger
Jard
Archive
seems also to have problems with zeitwerk, since the create statement just didn't return.
Pry
Archive
(binding.pry) worked without problems for me. Note: In case you are using pry-byebug
, you need to replace it with pry
. Otherwise binding.pry
is still broken.
Neutral: Use eager loading in tests
Eager loading means all classes are loaded before the code starts executing. Be aware that this could have an impact on the performance of tests.
config/environments/test.rb
:
Copyconfig.eager_load = true
Bad: Switch back to use the classic autoloading
config/application.rb:
Copyconfig.autoloader = :classic
Your choice of debugger should not force you to use old/different settings in the whole application. You can do that temporarily though.
Even more bad: explicitly require
the not found class
This will leave you with a mess of requires
that has to be maintained and be cleaned up in the future. You can do that temporarily though.
Also quite bad: Explicitly mention the class before your debugger statement
Copy# ... (code) TestCase::TargetLimitation debugger # ... (more code)
This will leave you with a mess of calls to the class that has to be maintained and be cleaned up in the future. You can do that temporarily though.
Does your version of Ruby on Rails still receive security updates?
Rails LTS provides security patches for unsupported versions of Ruby on Rails (2.3, 3.2, 4.2 and 5.2).