# File test/test_redirect.rb, line 110
    def test_doc_args
      args = @factory.doc_args
      assert_equal([ 'location', :string, nil ], args[0])
      assert_equal([ 'status', :select, [
                       '302 Found',
                       '303 See Other',
                       '301 Moved Permanently',
                       '307 Temporary Redirect'
                     ]
                   ], args[1])
    end