aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/nil_ext_test.rb
blob: 1062676d65d810ece6a385f58e0d802af0d34121 (plain) (blame)
1
2
3
4
5
6
7
8
require 'abstract_unit'
require 'active_support/core_ext/nil/conversions'

class NilExtAccessTests < Test::Unit::TestCase
  def test_to_param
    assert_nil nil.to_param
  end
end