Sha256: 9deb5d6a1a2f278b050f25faf7bbf456f75c20d6c957f7189efd0d8038ebb171
Contents?: true
Size: 477 Bytes
Versions: 44
Compression:
Stored size: 477 Bytes
Contents
require File.expand_path('../../../test_helper', __FILE__) require 'mocha/parameter_matchers/anything' require 'mocha/inspect' class AnythingTest < Test::Unit::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
44 entries across 36 versions & 3 rubygems