Sha256: cb87d5054553073797a7b16d9b73a01a713787130051ee49efc4a180a6444ef3

Contents?: true

Size: 1.58 KB

Versions: 10

Compression:

Stored size: 1.58 KB

Contents

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

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_true
    matcher.matches?(HMMSpecs.new).should be_true
    matcher.matches?(HMMSpecs::Subclass).should be_true
    matcher.matches?(HMMSpecs::Subclass.new).should be_true
  end

  it "does not match when mod does not have the method" do
    matcher = HaveMethodMatcher.new :another_method
    matcher.matches?(HMMSpecs).should be_false
  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_false
  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

10 entries across 10 versions & 1 rubygems

Version Path
mspec-1.5.17 spec/matchers/have_method_spec.rb
mspec-1.5.16 spec/matchers/have_method_spec.rb
mspec-1.5.15 spec/matchers/have_method_spec.rb
mspec-1.5.14 spec/matchers/have_method_spec.rb
mspec-1.5.13 spec/matchers/have_method_spec.rb
mspec-1.5.12 spec/matchers/have_method_spec.rb
mspec-1.5.10 spec/matchers/have_method_spec.rb
mspec-1.5.11 spec/matchers/have_method_spec.rb
mspec-1.5.8 spec/matchers/have_method_spec.rb
mspec-1.5.9 spec/matchers/have_method_spec.rb