Sha256: 32b914e9a2d7e65df80009c5bbeff9aaed5bd4f76b9787c67a0a20f43f6b5f82

Contents?: true

Size: 1.55 KB

Versions: 2

Compression:

Stored size: 1.55 KB

Contents

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

class HMMSpecs
  def instance_method
  end

  class Subclass < HMMSpecs
    def instance_sub_method
    end
  end
end

describe HaveMethodMatcher do
  it "inherits from MethodMatcher" do
    HaveMethodMatcher.new(:m).should be_kind_of(MethodMatcher)
  end

  it "matches when mod has the method" do
    matcher = HaveMethodMatcher.new :instance_method
    matcher.matches?(HMMSpecs).should be_truthy
    matcher.matches?(HMMSpecs.new).should be_truthy
    matcher.matches?(HMMSpecs::Subclass).should be_truthy
    matcher.matches?(HMMSpecs::Subclass.new).should be_truthy
  end

  it "does not match when mod does not have the method" do
    matcher = HaveMethodMatcher.new :another_method
    matcher.matches?(HMMSpecs).should be_falsey
  end

  it "does not match if the method is in a superclass and include_super is false" do
    matcher = HaveMethodMatcher.new :instance_method, false
    matcher.matches?(HMMSpecs::Subclass).should be_falsey
  end

  it "provides a failure message for #should" do
    matcher = HaveMethodMatcher.new :some_method
    matcher.matches?(HMMSpecs)
    matcher.failure_message.should == [
      "Expected HMMSpecs to have method 'some_method'",
      "but it does not"
    ]
  end

  it "provides a failure messoge for #should_not" do
    matcher = HaveMethodMatcher.new :some_method
    matcher.matches?(HMMSpecs)
    matcher.negative_failure_message.should == [
      "Expected HMMSpecs NOT to have method 'some_method'",
      "but it does"
    ]
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
mspec-1.9.1 spec/matchers/have_method_spec.rb
mspec-1.9.0 spec/matchers/have_method_spec.rb