aboutsummaryrefslogblamecommitdiffstats
path: root/activesupport/test/core_ext/object_ext_test.rb
blob: 484eecaab6c076284b3a7c6f46409413bd7c0741 (plain) (tree)
1
2
3
4
5
6
7
8
9
                       

                                                    





                                                               





                                          
   
require 'abstract_unit'
require 'active_support/core_ext/object/metaclass'
require 'active_support/core_ext/object/conversions'

class ObjectExtTest < Test::Unit::TestCase
  def test_tap_yields_and_returns_self
    foo = Object.new
    assert_equal foo, foo.tap { |x| assert_equal foo, x; :bar }
  end

  def test_to_param
    foo = Object.new
    foo.class_eval("def to_s; 'foo'; end")
    assert_equal 'foo', foo.to_param
  end
end