class DebugHelperTest

Public Instance Methods

test_debug() click to toggle source
# File actionview/test/activerecord/debug_helper_test.rb, line 7
def test_debug
  company = Company.new(name: "firebase")
  output = debug(company)
  assert_match "name: name", output
  assert_match "value_before_type_cast: firebase", output
  assert_match "active_record_yaml_version: 2", output
end
test_debug_with_marshal_error() click to toggle source
# File actionview/test/activerecord/debug_helper_test.rb, line 15
def test_debug_with_marshal_error
  obj = -> {}
  assert_match obj.inspect, Nokogiri.XML(debug(obj)).content
end