aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/object/itself_test.rb
blob: 65db0ddf400d0cedddfe94414872bec943335e67 (plain) (blame)
1
2
3
4
5
6
7
8
9
require 'abstract_unit'
require 'active_support/core_ext/object'

class Object::ItselfTest < ActiveSupport::TestCase
  test 'itself returns self' do
    object = 'fun'
    assert_equal object, object.itself
  end
end