1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Address NameError: uninitialized constant Arel::Collectors::Bind

when tested with Ruby 2.5 or higher

```ruby
$ ruby -v
ruby 2.5.1p57 (2018-03-29 revision 63029) [x86_64-linux]
$ bundle exec ruby -w -Itest test/cases/arel/collectors/bind_test.rb -n test_compile_gathers_all_bind_params
Run options: -n test_compile_gathers_all_bind_params --seed 24420

E

Error:
Arel::Collectors::TestBind#test_compile_gathers_all_bind_params:
NameError: uninitialized constant Arel::Collectors::Bind
Did you mean?  Binding
    test/cases/arel/collectors/bind_test.rb:15:in `collect'
    test/cases/arel/collectors/bind_test.rb:19:in `compile'
    test/cases/arel/collectors/bind_test.rb:31:in `test_compile_gathers_all_bind_params'

bin/rails test test/cases/arel/collectors/bind_test.rb:30

Finished in 0.002343s, 426.8559 runs/s, 0.0000 assertions/s.
1 runs, 0 assertions, 0 failures, 1 errors, 0 skips
$
```

It is likely due to Ruby 2.5 does not look up top level constant.
https://www.ruby-lang.org/en/news/2017/12/25/ruby-2-5-0-released/
"Top-level constant look-up is no longer available."
This commit is contained in:
Yasuo Honda 2018-04-25 00:26:16 +00:00
parent 989b1cb4a3
commit eed31bd9d9

View file

@ -1,6 +1,7 @@
# frozen_string_literal: true
require_relative "../helper"
require "arel/collectors/bind"
module Arel
module Collectors