tests/config.py
author Radek Brich <radek.brich@devl.cz>
Thu, 15 Dec 2011 18:26:04 +0100
changeset 25 20a72a9a2d09
parent 22 680631f35d83
child 37 5b0eb4b11940
permissions -rw-r--r--
Fix bad name.

import sys

sys.path.insert(0, '..')


class Config(dict):
    def __init__(self, fname):
        data = open(fname).read()
        exec(data, dict(), self)