mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Fix debug helper test
This commit is contained in:
parent
b604dd0b81
commit
14ff8e7906
1 changed files with 4 additions and 1 deletions
|
@ -4,7 +4,10 @@ require 'nokogiri'
|
|||
class DebugHelperTest < ActionView::TestCase
|
||||
def test_debug
|
||||
company = Company.new(name: "firebase")
|
||||
assert_match "name: firebase", debug(company)
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue