# File test/test_control.rb, line 955
    def test_access_log_error
      @store['access_log_logging'] = false
      @store['access_logs'] = [
        { 'path' => 'detarame/access.log',
          'format' => 'HALO'
        }
      ]
      build_control
      server_setup
      assert_equal(0, @logging_access_call)
      assert_equal(0, @add_access_log_call)
      assert_equal('detarame/access.log', @control.logging_errors[0][:logfile])
      assert_instance_of(Errno::ENOENT, @control.logging_errors[0][:exception])
    end