#!/bin/bash
#-------------------------
# Testing python3-munch
#-------------------------
set -e

result=$(python3 `dirname $0`/test_import_munch.py 2>&1)
if [ "$result" ]; then
    echo "ERROR: PYTHON3-MUNCH MODULE CANNOT BE IMPORTED"
    exit 1
else
    echo "OK"
    exit 0
fi
