summaryrefslogtreecommitdiff
path: root/test/-ext-/class/test_class2name.rb
blob: e61964d9eb7365d11752eff8ca69182a0434f643 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: false
require 'test/unit'
require "-test-/class"

class Test_Class < Test::Unit::TestCase
  class Test_Class2Name < superclass
    def test_toplevel_class
      assert_equal("Object", Bug::Class.class2name(::Object))
    end

    def test_toplevel_module
      assert_equal("Kernel", Bug::Class.class2name(::Kernel))
    end

    def test_singleton_class
      assert_equal("Object", Bug::Class.class2name(::Object.new.singleton_class))
    end
  end
end