module Rack::Lint::Assertion

def assert(message)

def assert(message)
  unless yield
    raise LintError, message
  end
end