module RSpec::Matchers::FailMatchers
def fail_including(*snippets)
@example
Matches if an expectation fails including the provided message
def fail_including(*snippets) raise_error( RSpec::Expectations::ExpectationNotMetError, a_string_including(*snippets) ) end