There was an error while loading. Please reload this page.
1 parent 47f83a0 commit 83a4a73Copy full SHA for 83a4a73
2 files changed
spec/activerecord_spec.rb
@@ -295,6 +295,8 @@ def perform(elements)
295
context "with arguments" do
296
let(:objects) { Entity.includes(company: :with_arguments) }
297
298
+ before { skip "unsupported by ActiveRecord 6" if ar_version == 6 }
299
+
300
it "works" do
301
expect do
302
objects.each do |object|
spec/spec_helper.rb
@@ -19,8 +19,7 @@
19
end
20
21
def ar_lazy_preload_defined?
22
- p "HUY"
23
- p defined?(ArLazyPreload)
+ defined?(ArLazyPreload)
24
25
26
def ar_version
0 commit comments