aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/boolean_ext_test.rb
blob: 751f7037453d6d568f8b6eaba508c9629501def7 (plain) (blame)
1
2
3
4
5
6
7
8
9
class BooleanExtAccessTests < Test::Unit::TestCase
  def test_to_param_on_true
    assert_equal true, true.to_param
  end

  def test_to_param_on_false
    assert_equal false, false.to_param
  end
end