Sha256: e898d1480d48241a93e09a0ea672fc4c11d1e829c0757452bc2be06a6158cf12
Contents?: true
Size: 273 Bytes
Versions: 124
Compression:
Stored size: 273 Bytes
Contents
# frozen_string_literal: true RSpec.describe :stringify_keys do link :stringify_keys, from: :ree_hash it { result = stringify_keys({name: "John", "age": 25, nil: "nothing"}) expect(result).to eq({"name" => "John", "age" => 25, "nil" => "nothing"}) } end
Version data entries
124 entries across 124 versions & 1 rubygems