module ActionController::TestCase::Behavior

def head(action, **args)

See +get+ for more details.
Simulate a HEAD request with the given parameters and set/volley the response.
def head(action, **args)
  process(action, method: "HEAD", **args)
end