#!/usr/bin/env python
"""
    Test Runner
    ~~~~~~~~~~~

    This is a wrapper script for running the Zine unittests.
    Run it with the --help option for usage information.

    :copyright: (c) 2009 by the Zine Team, see AUTHORS for more details.
    :license: BSD, see LICENSE for more details.
"""
import os
import sys

path = os.path.join(os.path.dirname(__file__), os.path.pardir)
os.chdir(path)
sys.path.insert(0, path)

from tests import main
main()
