Sha256: 082b8771f75367158b8f1d410ed2e8bbea344d7404d20e223c8fcb8e35ef9925

Contents?: true

Size: 1.05 KB

Versions: 9

Compression:

Stored size: 1.05 KB

Contents

require 'spec_helper'
require 'mspec/expectations/expectations'
require 'mspec/matchers'

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.0)
    matcher.negative_failure_message.should == [
      "Expected 4.0 (Float)", "not to be kind of Numeric"]
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
mspec-1.9.1 spec/matchers/be_kind_of_spec.rb
mspec-1.9.0 spec/matchers/be_kind_of_spec.rb
mspec-1.8.0 spec/matchers/be_kind_of_spec.rb
mspec-1.7.0 spec/matchers/be_kind_of_spec.rb
mspec-1.6.0 spec/matchers/be_kind_of_spec.rb
mspec-1.5.21 spec/matchers/be_kind_of_spec.rb
mspec-1.5.20 spec/matchers/be_kind_of_spec.rb
mspec-1.5.19 spec/matchers/be_kind_of_spec.rb
mspec-1.5.18 spec/matchers/be_kind_of_spec.rb