mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
17 lines
330 B
Ruby
17 lines
330 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|