module Minitest::Assertions

def refute test, msg = nil

def refute test, msg = nil
  msg ||= message { "Expected #{mu_pp(test)} to not be truthy" }
  assert !test, msg
end