ngx-fancyindex/t/02-smoke-indexisfancy.test

7 lines
230 B
Bash

#! /bin/bash
nginx_start
content=$(fetch --with-headers)
grep 'Index of /' <<< "${content}" # It is an index
grep '\<table\>' <<< "${content}" # It contains a table
grep '^ Content-Type:[[:space:]]*text/html' <<< "${content}"