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

                                            
 
                                             
                                             


                                                 


                                                                                       
     
 
                                                    


                                     
                                      
                               
     
   
# frozen_string_literal: true

require "abstract_unit"
require "active_support/core_ext/name_error"

class NameErrorTest < ActiveSupport::TestCase
  def test_name_error_should_set_missing_name
    exc = assert_raise NameError do
      SomeNameThatNobodyWillUse____Really ? 1 : 0
    end
    assert_equal "NameErrorTest::SomeNameThatNobodyWillUse____Really", exc.missing_name
    assert exc.missing_name?(:SomeNameThatNobodyWillUse____Really)
    assert exc.missing_name?("NameErrorTest::SomeNameThatNobodyWillUse____Really")
  end

  def test_missing_method_should_ignore_missing_name
    exc = assert_raise NameError do
      some_method_that_does_not_exist
    end
    assert_not exc.missing_name?(:Foo)
    assert_nil exc.missing_name
  end
end