summaryrefslogtreecommitdiffstats
path: root/testsuite/Testsrc/Testlib/TestServer/TestPlugins/TestCfg/TestCfgPlaintextGenerator.py
blob: 5c6767a592eb6c43007480bca0fca16dca027830 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import os
import sys
from Bcfg2.Server.Plugins.Cfg.CfgPlaintextGenerator import *

# add all parent testsuite directories to sys.path to allow (most)
# relative imports in python 2.4
path = os.path.dirname(__file__)
while path != "/":
    if os.path.basename(path).lower().startswith("test"):
        sys.path.append(path)
    if os.path.basename(path) == "testsuite":
        break
    path = os.path.dirname(path)
from TestServer.TestPlugins.TestCfg.Test_init import TestCfgGenerator


class TestCfgPlaintextGenerator(TestCfgGenerator):
    test_obj = CfgPlaintextGenerator