aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/test/activerecord/debug_helper_test.rb
blob: 4be1023733b355215d2a148bae6a1558337075b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

require "active_record_unit"
require "nokogiri"

class DebugHelperTest < ActionView::TestCase
  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

  def test_debug_with_marshal_error
    obj = -> {}
    assert_match obj.inspect, Nokogiri.XML(debug(obj)).content
  end
end