Sha256: 0dbdd750a393f1a5e97569f3b2ed2d00a5d130fcb8cd85a64e13ea774408bf82
Contents?: true
Size: 596 Bytes
Versions: 85
Compression:
Stored size: 596 Bytes
Contents
require File.expand_path('../../../test_helper', __FILE__) require 'mocha/parameter_matchers/is_a' require 'mocha/inspect' class IsATest < Test::Unit::TestCase include Mocha::ParameterMatchers def test_should_match_object_that_is_a_specified_class matcher = is_a(Integer) assert matcher.matches?([99]) end def test_should_not_match_object_that_is_not_a_specified_class matcher = is_a(Integer) assert !matcher.matches?(['string']) end def test_should_describe_matcher matcher = is_a(Integer) assert_equal "is_a(Integer)", matcher.mocha_inspect end end
Version data entries
85 entries across 68 versions & 7 rubygems