#!/bin/bash
#-------------------------
# Testing client utilities
#-------------------------
set -e

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