Source code for boek.proef

# boek/proef.py
#
#

""" define boek test classes. """

__copyright__ = "Copyright 2015, B.H.J Thate"

## IMPORTS

import unittest
import sys
import os

## Test class

[docs]class Proef(unittest.TestCase): """ class that implements setup and teardown of tests. """ pass
if not os.getcwd() in sys.path: sys.path.append(os.getcwd())