aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/module/reachable_test.rb
blob: f356d46957997213bf61cad8085cc0020d9f11ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# frozen_string_literal: true

require "abstract_unit"
require "active_support/core_ext/module/reachable"

class AnonymousTest < ActiveSupport::TestCase
  test "an anonymous class or module is not reachable" do
    assert_deprecated do
      assert_not_predicate Module.new, :reachable?
      assert_not_predicate Class.new, :reachable?
    end
  end

  test "ordinary named classes or modules are reachable" do
    assert_deprecated do
      assert_predicate Kernel, :reachable?
      assert_predicate Object, :reachable?
    end
  end

  test "a named class or module whose constant has gone is not reachable" do
    c = eval "class C; end; C"
    m = eval "module M; end; M"

    self.class.send(:remove_const, :C)
    self.class.send(:remove_const, :M)

    assert_deprecated do
      assert_not_predicate c, :reachable?
      assert_not_predicate m, :reachable?
    end
  end

  test "a named class or module whose constants store different objects are not reachable" do
    c = eval "class C; end; C"
    m = eval "module M; end; M"

    self.class.send(:remove_const, :C)
    self.class.send(:remove_const, :M)

    eval "class C; end"
    eval "module M; end"

    assert_deprecated do
      assert_predicate C, :reachable?
      assert_predicate M, :reachable?
      assert_not_predicate c, :reachable?
      assert_not_predicate m, :reachable?
    end
  end
end