# File test/test_params.rb, line 1217
    def arg_info_alist(name)
      @arg_info_alist_call += 1
      @arg_info_alist_name = name
      [ [ 'string',   :string,   'hi' ],
        [ 'password', :password, nil ],
        [ 'text',     :text,     '<html>Hello world.</html>' ],
        [ 'number',   :number,   0 ],
        [ 'regexp',   :regexp,   /foo/ ],
        [ 'boolean',  :bool,     true ],
        [ 'select',   :select,   %[ foo bar baz ] ],
        [ 'radio',    :radio,    %[ foo bar baz ] ],
        [ 'checkset', :checkset,
          [ [ 'foo', false ],
            [ 'bar', false ],
            [ 'baz', false ]
          ]
        ]
      ]
    end