Method: Test::Unit::Assertions#assert_eql

Defined in:
lib/xqsr3/extensions/test/unit/assert_eql.rb

#assert_eql(expected, actual, failure_message = '') ⇒ Object

Assert that expected and actual have the same hash key



10
11
12
13
# File 'lib/xqsr3/extensions/test/unit/assert_eql.rb', line 10

def assert_eql(expected, actual, failure_message = '')

	assert expected.eql?(actual), failure_message
end