Sha256: 0f9cf9359a786aed954e5046c56e52c668d1867b889772855fb49b00aaefd613
Contents?: true
Size: 472 Bytes
Versions: 17
Compression:
Stored size: 472 Bytes
Contents
require File.expand_path('../../../test_helper', __FILE__) require 'mocha/parameter_matchers/anything' require 'mocha/inspect' class AnythingTest < Mocha::TestCase include Mocha::ParameterMatchers def test_should_match_anything matcher = anything assert matcher.matches?([:something]) assert matcher.matches?([{'x' => 'y'}]) end def test_should_describe_matcher matcher = anything assert_equal "anything", matcher.mocha_inspect end end
Version data entries
17 entries across 14 versions & 4 rubygems