Sha256: 329171486323820a448a1ff70cab715d76c70b0d01f38ffc57334a710b72e902

Contents?: true

Size: 699 Bytes

Versions: 3

Compression:

Stored size: 699 Bytes

Contents

module RSpec::RubyContentMatchers
  class HaveClass
    attr_reader :klass

    def initialize(klass)
      @klass = klass.to_s.camelize      
    end

    def matches?(content)      
      match_res = (content =~ /class\s+#{klass}\s+(.*)end/m)
      if block_given? && $1
        ruby_content = $1.strip.extend(RSpec::RubyContent::Helpers)
        yield ruby_content 
      else
        match_res
      end
    end          
  
    def failure_message
      "Expected there to be the class #{klass}"
    end 
    
    def negative_failure_message
      "Did no expected there to be the class #{klass}"
    end
               
  end
  
  def have_class(klass)
    HaveClass.new(klass)
  end    
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
generator-spec-0.3.5 lib/rspec_for_generators/matchers/content/have_class.rb
generator-spec-0.3.4 lib/rspec_for_generators/matchers/content/have_class.rb
generator-spec-0.3.3 lib/rspec_for_generators/matchers/content/have_class.rb