Sha256: 512b4f005268167dceb71a8a10b184934a20bf2ebecf312cddb8af58e4654a5e

Contents?: true

Size: 349 Bytes

Versions: 27

Compression:

Stored size: 349 Bytes

Contents

require_relative 'helper'

module Psych
  class TestNil < TestCase
    def test_nil
      yml = Psych.dump nil
      assert_match(/--- \n(?:\.\.\.\n)?/, yml)
      assert_nil Psych.load(yml)
    end

    def test_array_nil
      yml = Psych.dump [nil]
      assert_equal "---\n- \n", yml
      assert_equal [nil], Psych.load(yml)
    end

  end
end

Version data entries

27 entries across 27 versions & 2 rubygems

Version Path
psych-2.0.17-java test/psych/test_nil.rb
psych-2.0.17 test/psych/test_nil.rb
psych-2.0.16-java test/psych/test_nil.rb
psych-2.0.16 test/psych/test_nil.rb
psych-2.0.15-java test/psych/test_nil.rb
psych-2.0.15 test/psych/test_nil.rb
psych-2.0.14-java test/psych/test_nil.rb
psych-2.0.14 test/psych/test_nil.rb
psych-shopifork-2.0.13 test/psych/test_nil.rb
psych-2.0.14.pre1-java test/psych/test_nil.rb
psych-2.0.13 test/psych/test_nil.rb
psych-2.0.12 test/psych/test_nil.rb
psych-2.0.11 test/psych/test_nil.rb
psych-2.0.10 test/psych/test_nil.rb
psych-2.0.9 test/psych/test_nil.rb
psych-2.0.8 test/psych/test_nil.rb
psych-2.0.7 test/psych/test_nil.rb
psych-2.0.6 test/psych/test_nil.rb
psych-shopifork-2.0.5 test/psych/test_nil.rb
psych-2.0.5 test/psych/test_nil.rb