Sha256: ac44f63311861cce7973fdd2ac76c5f9c1b0c200c503f52ab983665d673c736d
Contents?: true
Size: 1.68 KB
Versions: 2
Compression:
Stored size: 1.68 KB
Contents
require 'spec_helper' require 'mspec/expectations/expectations' require 'mspec/matchers' class HPIMMSpecs protected def protected_method end class Subclass < HPIMMSpecs protected def protected_sub_method end end end describe HaveProtectedInstanceMethodMatcher do it "inherits from MethodMatcher" do HaveProtectedInstanceMethodMatcher.new(:m).should be_kind_of(MethodMatcher) end it "matches when mod has the protected instance method" do matcher = HaveProtectedInstanceMethodMatcher.new :protected_method matcher.matches?(HPIMMSpecs).should be_truthy matcher.matches?(HPIMMSpecs::Subclass).should be_truthy end it "does not match when mod does not have the protected instance method" do matcher = HaveProtectedInstanceMethodMatcher.new :another_method matcher.matches?(HPIMMSpecs).should be_falsey end it "does not match if the method is in a superclass and include_super is false" do matcher = HaveProtectedInstanceMethodMatcher.new :protected_method, false matcher.matches?(HPIMMSpecs::Subclass).should be_falsey end it "provides a failure message for #should" do matcher = HaveProtectedInstanceMethodMatcher.new :some_method matcher.matches?(HPIMMSpecs) matcher.failure_message.should == [ "Expected HPIMMSpecs to have protected instance method 'some_method'", "but it does not" ] end it "provides a failure messoge for #should_not" do matcher = HaveProtectedInstanceMethodMatcher.new :some_method matcher.matches?(HPIMMSpecs) matcher.negative_failure_message.should == [ "Expected HPIMMSpecs NOT to have protected instance 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_protected_instance_method_spec.rb |
mspec-1.9.0 | spec/matchers/have_protected_instance_method_spec.rb |