    Promise = require 'bluebird'
    chai = require 'chai'
    chai.should()
    fs = (require 'fs').promises

    before ->
      # Write a file in server.json that contains  "acls": { "default": [ "172.17.42.0/8" ] }

    it.skip 'should write proper ACLS', ->
      run = require '../config.coffee.md'
      options = require './example.json'
      await run options
      content = await fs.readFile '../conf/acl.conf.xml', 'utf-8'
      content.should.equal '<list name="default" default="deny"><node type="allow" cidr="172.17.42.0/8" /></list>\n'
