1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionview/test/activerecord/debug_helper_test.rb
Rafael Mendonça França 55f9b8129a
Add three new rubocop rules
Style/SpaceBeforeBlockBraces
Style/SpaceInsideBlockBraces
Style/SpaceInsideHashLiteralBraces

Fix all violations in the repository.
2016-08-16 04:30:11 -03:00

17 lines
470 B
Ruby

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