Sha256: 81a07bfea86c48620f6331b71ee600e916099fa60135d172a83f1e0670797862

Contents?: true

Size: 1.06 KB

Versions: 7

Compression:

Stored size: 1.06 KB

Contents

module Spec
  module Matchers
    def self.last_matcher
      @last_matcher
    end

    def self.last_matcher=(last_matcher)
      @last_matcher = last_matcher
    end

    def self.last_should
      @last_should
    end

    def self.last_should=(last_should)
      @last_should = last_should
    end

    def self.clear_generated_description
      self.last_matcher = nil
      self.last_should = nil
    end

    def self.generated_description
      return nil if last_should.nil?
      "#{last_should.to_s.gsub('_',' ')} #{last_description}"
    end
    
    private
    
    def self.last_description
      last_matcher.respond_to?(:description) ? last_matcher.description : <<-MESSAGE
When you call a matcher in an example without a String, like this:

specify { object.should matcher }

or this:

it { should matcher }

the runner expects the matcher to have a #describe method. You should either
add a String to the example this matcher is being used in, or give it a
description method. Then you won't have to suffer this lengthy warning again.
MESSAGE
    end
  end
end
      

Version data entries

7 entries across 7 versions & 5 rubygems

Version Path
dchelimsky-rspec-1.1.11.7 lib/spec/matchers/generated_descriptions.rb
dchelimsky-rspec-1.1.12 lib/spec/matchers/generated_descriptions.rb
newbamboo-evented-rspec-1.1.12 lib/spec/matchers/generated_descriptions.rb
newbamboo-rspec-1.1.12 lib/spec/matchers/generated_descriptions.rb
mack-0.8.3 lib/gems/rspec-1.1.12/lib/spec/matchers/generated_descriptions.rb
mack-0.8.3.1 lib/gems/rspec-1.1.12/lib/spec/matchers/generated_descriptions.rb
rspec-1.1.12 lib/spec/matchers/generated_descriptions.rb