module RSpecHelpers
def expect_warn_deprecation_with_call_site(file, line, snippet=//)
def expect_warn_deprecation_with_call_site(file, line, snippet=//) expect(RSpec.configuration.reporter).to receive(:deprecation). with(include(:message => match(snippet), :call_site => include([file, line].join(':')))) end