#!/bin/sh
#
# test -i option
#
set +e
mp3guessenc -i debian/flush.mp3 > i.tmp
set -e
#
grep -F 2020 i.tmp
grep -F Ambient i.tmp
#
rm i.tmp

