module Maxitest::Pending

def pending(reason=nil)

def pending(reason=nil)
  yield
rescue Minitest::Assertion
  skip reason
else
  raise "Fixed"
end