Sha256: a890423cfc72f13276f0e0941d1733d0ca847445a86a8278545befd91572f868

Contents?: true

Size: 401 Bytes

Versions: 44

Compression:

Stored size: 401 Bytes

Contents

require File.expand_path('../../test_helper', __FILE__)
require 'mocha/inspect'

class HashInspectTest < Test::Unit::TestCase

  def test_should_keep_spacing_between_key_value
    hash = {:a => true}
    assert_equal '{:a => true}', hash.mocha_inspect
  end

  def test_should_use_mocha_inspect_on_each_item
    hash = {:a => 'mocha'}
    assert_equal "{:a => 'mocha'}", hash.mocha_inspect
  end

end

Version data entries

44 entries across 36 versions & 3 rubygems

Version Path
mocha-0.11.3 test/unit/hash_inspect_test.rb
mocha-0.11.2 test/unit/hash_inspect_test.rb
mocha-0.11.1 test/unit/hash_inspect_test.rb
mocha-0.11.0 test/unit/hash_inspect_test.rb