1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
# frozen_string_literal: true
require File.expand_path('../../test_helper', __FILE__)
require 'mocha/inspect'
require 'mocha/ruby_version'
class HashInspectTest < Mocha::TestCase
def test_should_return_string_representation_of_hash_with_symbol_keys
hash = { a: true, b: false }
assert_equal '{a: true, b: false}', hash.mocha_inspect
end
def test_should_return_string_representation_of_hash_with_string_keys
hash = { 'a' => true, 'b' => false }
assert_equal '{"a" => true, "b" => false}', hash.mocha_inspect
end
if Mocha::RUBY_V27_PLUS
def test_should_return_unwrapped_keyword_style_hash_when_keyword_hash
hash = Hash.ruby2_keywords_hash(a: true, b: false)
assert_equal 'a: true, b: false', hash.mocha_inspect
end
def test_should_return_double_splatted_empty_hash_when_empty_keyword_hash
hash = Hash.ruby2_keywords_hash({})
assert_equal '**{}', hash.mocha_inspect
end
def test_should_return_unwrapped_hash_when_keyword_hash_keys_are_not_symbols
hash = Hash.ruby2_keywords_hash('a' => true, 'b' => false)
assert_equal '"a" => true, "b" => false', hash.mocha_inspect
end
end
def test_should_use_mocha_inspect_on_each_key_and_value
object1 = Object.new
object2 = Object.new
hash = { object1 => object2 }
assert_equal "{#{object1.mocha_inspect} => #{object2.mocha_inspect}}", hash.mocha_inspect
end
end
|