Sha256: 4b0da8a95b1783c0f2cc748c4893ac1002f2e08254fbc47d10fb2bafcde734ef

Contents?: true

Size: 1.08 KB

Versions: 18

Compression:

Stored size: 1.08 KB

Contents

require File.dirname(__FILE__) + '/../spec_helper'
require 'mspec/expectations/expectations'
require 'mspec/matchers/be_kind_of'

describe BeKindOfMatcher do
  it "matches when actual is a kind_of? expected" do
    BeKindOfMatcher.new(Integer).matches?(1).should == true
    BeKindOfMatcher.new(Fixnum).matches?(2).should == true
    BeKindOfMatcher.new(Regexp).matches?(/m/).should == true
  end

  it "does not match when actual is not a kind_of? expected" do
    BeKindOfMatcher.new(Integer).matches?(1.5).should == false
    BeKindOfMatcher.new(String).matches?(:a).should == false
    BeKindOfMatcher.new(Hash).matches?([]).should == false
  end

  it "provides a useful failure message" do
    matcher = BeKindOfMatcher.new(Numeric)
    matcher.matches?('string')
    matcher.failure_message.should == ["Expected \"string\" (String)", "to be kind of Numeric"]
  end

  it "provides a useful negative failure message" do
    matcher = BeKindOfMatcher.new(Numeric)
    matcher.matches?(4.2)
    matcher.negative_failure_message.should == ["Expected 4.2 (Float)", "not to be kind of Numeric"]
  end
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
mspec-1.0.0 spec/matchers/be_kind_of_spec.rb
mspec-1.3.0 spec/matchers/be_kind_of_spec.rb
mspec-1.5.10 spec/matchers/be_kind_of_spec.rb
mspec-1.5.2 spec/matchers/be_kind_of_spec.rb
mspec-1.5.0 spec/matchers/be_kind_of_spec.rb
mspec-1.3.1 spec/matchers/be_kind_of_spec.rb
mspec-1.4.0 spec/matchers/be_kind_of_spec.rb
mspec-1.5.1 spec/matchers/be_kind_of_spec.rb
mspec-1.5.3 spec/matchers/be_kind_of_spec.rb
mspec-1.5.4 spec/matchers/be_kind_of_spec.rb
mspec-1.1.0 spec/matchers/be_kind_of_spec.rb
mspec-1.1.1 spec/matchers/be_kind_of_spec.rb
mspec-1.2.0 spec/matchers/be_kind_of_spec.rb
mspec-1.5.5 spec/matchers/be_kind_of_spec.rb
mspec-1.5.9 spec/matchers/be_kind_of_spec.rb
mspec-1.5.7 spec/matchers/be_kind_of_spec.rb
mspec-1.5.8 spec/matchers/be_kind_of_spec.rb
mspec-1.5.6 spec/matchers/be_kind_of_spec.rb