1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activerecord/test/cases/coders/json_test.rb
Sean Griffin a44497f6c9 Merge pull request #23810 from xijo/fix_json_coder_when_mysql_strict_is_disabled (#25033)
Fix bug in JSON deserialization when column default is an empty string
2016-05-16 11:15:47 -04:00

15 lines
299 B
Ruby

require "cases/helper"
module ActiveRecord
module Coders
class JSONTest < ActiveRecord::TestCase
def test_returns_nil_if_empty_string_given
assert_nil JSON.load("")
end
def test_returns_nil_if_nil_given
assert_nil JSON.load(nil)
end
end
end
end