#!/bin/bash

if [ "$1" = "" ] || [ "$1" = "--help" ] || [ "$1" = "-h" ]; then
    echo "usage:" 
    echo "./testone [-v] tests.[module[.class[.method]]]"
    exit 1
fi

python -m unittest $*

