# File lib/ethon/easy/http/actionable.rb, line 93
        def setup(easy)
          @easy = easy

          # Order is important, @easy will be used to provide access to options
          # relevant to the following operations (like whether or not to escape
          # values).
          easy.set_attributes(options)

          set_form(easy) unless form.empty?

          if params.empty?
            easy.url = url
          else
            set_params(easy)
          end
        end