# File test/test_params.rb, line 845
    def test_del_logfile_at
      @store['access_logs'] = [ { 'path' => nil, 'format' => nil } ]
      @access_log_params.load(self)
      assert_equal(1, @access_log_params.logfiles.length)
      @access_log_params.del_logfile_at(0)
      assert_equal(0, @access_log_params.logfiles.length)
    end