Created
November 1, 2018 05:56
-
-
Save weilandia/821a7092432f211469ba1cdbbca9831d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# frozen_string_literal: true | |
require "pry" | |
require "bundler/inline" | |
gemfile(true) do | |
source "https://rubygems.org" | |
git_source(:github) { |repo| "https://github.com/#{repo}.git" } | |
# Activate the gem you are reporting the issue against. | |
gem "activesupport", "5.1.0" | |
end | |
require "active_support/core_ext/hash" | |
require "active_support/hash_with_indifferent_access" | |
require "minitest/autorun" | |
class HashWithIndifferentAccessTest < Minitest::Test | |
def setup | |
@strings = { "a" => 1, "b" => 2 } | |
@symbols = { a: 1, b: 2 } | |
@mixed = { :a => 1, "b" => 2 } | |
end | |
def test_symbolize_keys_for_hash_with_indifferent_access | |
assert_instance_of Hash, @symbols.with_indifferent_access.symbolize_keys | |
assert_equal @symbols, @symbols.with_indifferent_access.symbolize_keys | |
assert_equal @symbols, @strings.with_indifferent_access.symbolize_keys | |
assert_equal @symbols, @mixed.with_indifferent_access.symbolize_keys | |
end | |
def test_to_options_for_hash_with_indifferent_access | |
assert_instance_of Hash, @symbols.with_indifferent_access.to_options | |
assert_equal @symbols, @symbols.with_indifferent_access.to_options | |
assert_equal @symbols, @strings.with_indifferent_access.to_options | |
assert_equal @symbols, @mixed.with_indifferent_access.to_options | |
end | |
def test_to_options_works_with_keyword_args | |
params = HashWithIndifferentAccess.new(arg: true).to_options | |
assert mock_keyword_method(params) | |
end | |
def test_symbolize_keys_works_with_keyword_args | |
params = HashWithIndifferentAccess.new(arg: true).symbolize_keys | |
assert mock_keyword_method(params) | |
end | |
def mock_keyword_method(arg: false) | |
arg | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment