Sha256: d36c6ee59053fae847bb546c917938866116c87c581dad2d91c4f6cd4c2abfda

Contents?: true

Size: 1020 Bytes

Versions: 12

Compression:

Stored size: 1020 Bytes

Contents

require "test_helper"
require "custom_json_serializer"

class MixinJsonTest < ActiveSupport::TestCase
  setup do
    # Setup a hash with random values, ensuring some values are nil
    @hash = {}
    (1..4).each do |i|
      @hash["key#{i}"] = [FFaker::Lorem.word, nil].sample
    end
    @hash["tkey"] = nil
    @hash[""] = "foo"
    @hash_as_json = @hash.to_json
  end

  context "`load` class method" do
    should "exist" do
      assert CustomJsonSerializer.respond_to?(:load)
    end

    should "`deserialize` JSON to Ruby, removing pairs with `blank` keys or values" do
      assert_equal @hash.reject { |k, v| k.blank? || v.blank? },
        CustomJsonSerializer.load(@hash_as_json)
    end
  end

  context "`dump` class method" do
    should "exist" do
      assert CustomJsonSerializer.respond_to?(:dump)
    end

    should "`serialize` Ruby to JSON, removing pairs with `nil` values" do
      assert_equal @hash.reject { |_k, v| v.nil? }.to_json,
        CustomJsonSerializer.dump(@hash)
    end
  end
end

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/paper_trail-5.2.3/test/unit/serializers/mixin_json_test.rb
paper_trail-6.0.2 test/unit/serializers/mixin_json_test.rb
paper_trail-6.0.1 test/unit/serializers/mixin_json_test.rb
paper_trail-6.0.0 test/unit/serializers/mixin_json_test.rb
paper_trail-5.2.3 test/unit/serializers/mixin_json_test.rb
paper_trail-5.2.2 test/unit/serializers/mixin_json_test.rb
paper_trail-5.2.1 test/unit/serializers/mixin_json_test.rb
paper_trail-5.2.0 test/unit/serializers/mixin_json_test.rb
paper_trail-5.1.1 test/unit/serializers/mixin_json_test.rb
paper_trail-5.1.0 test/unit/serializers/mixin_json_test.rb
paper_trail-5.0.1 test/unit/serializers/mixin_json_test.rb
paper_trail-5.0.0 test/unit/serializers/mixin_json_test.rb