Sha256: 6cf7ebeb7cf2938fc352913442ad14f0f85b0b82b27eccabd24e500fc76d8631
Contents?: true
Size: 229 Bytes
Versions: 3
Compression:
Stored size: 229 Bytes
Contents
# frozen_string_literal: true require "test_helper" class SymbolizeKeysTest < Minitest::Test test "converts keys to symbols" do expected = {a: 1} assert_equal expected, Aitch::Utils.symbolize_keys("a" => 1) end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
aitch-1.2.1 | test/aitch/utils/symbolize_keys_test.rb |
aitch-1.2.0 | test/aitch/utils/symbolize_keys_test.rb |
aitch-1.1.0 | test/aitch/utils/symbolize_keys_test.rb |