module RSpec::Steps

Constants

SharedSteps

Public Class Methods

warnings() click to toggle source
# File lib/rspec-steps/dsl.rb, line 5
def self.warnings
  @warnings ||= Hash.new do |h,warning|
    puts warning #should be warn, but RSpec complains
    h[warning] = true
  end
end