module RSpecHelpers

def expect_warn_deprecation(snippet=//)

def expect_warn_deprecation(snippet=//)
  expect(RSpec.configuration.reporter).to receive(:deprecation).
    with(include(:message => match(snippet)))
end