#!/bin/bash
. testsuite/functions.sh

PORT=12347
run_weborf -b site1 -p $PORT --mime

function cleanup () {
    kill -9 $WEBORF_PID
}
trap cleanup EXIT

curl -v http://127.0.0.1:$PORT/robots.txt |& grep Content-Type | grep text/
