aboutsummaryrefslogblamecommitdiffstats
path: root/activesupport/test/core_ext/proc_test.rb
blob: c4d5592196ab110526a237db2945c9c495a863cb (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
                       
                                      
 
                                         
                                                






                                            
     
   
require 'abstract_unit'
require 'active_support/core_ext/proc'

class ProcTests < ActiveSupport::TestCase
  def test_bind_returns_method_with_changed_self
    assert_deprecated do
      block = Proc.new { self }
      assert_equal self, block.call
      bound_block = block.bind("hello")
      assert_not_equal block, bound_block
      assert_equal "hello", bound_block.call
    end
  end
end