Commit 644d0686 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

ESI:include test case



git-svn-id: http://www.varnish-cache.org/svn/trunk@2824 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 6a95801b
# $Id$
test "ESI include"
server s1 {
rxreq
txresp -body {
Before include
<esi:include src="/body">
After include
}
rxreq
expect req.url == "/body"
txresp -body {
Included file
}
} -start
varnish v1 -vcl+backend {
sub vcl_fetch {
esi;
}
} -start
client c1 {
txreq
rxresp
expect resp.status == 200
}
client c1 -run
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment