#!/bin/sh

set -e

echo "Test that cumin can print the help message without errors"
cumin --help

echo "Test that cumin help message has enough content"
[ "$(cumin --help | wc -l)" -gt "50" ]
