lib/www/mechanize/form/check_box.rb



module WWW
  class Mechanize
    class Form
      # This class represents a check box found in a Form.  To activate the
      # CheckBox in the Form, set the checked method to true.
      class CheckBox < RadioButton
        def query_value
          [[@name, @value || "on"]]
        end
      end
    end
  end
end