#!/bin/sh

set -e

echo "Test that cumin man page is printed without errors"
man --pager=cat cumin

echo "Test that cumin man page has enough content"
[ "$(man --pager=cat cumin | wc -l)" -gt "50" ]
