3 from __future__
import print_function
6 from os.path
import abspath, dirname, join, normpath
10 ROOT =
normpath(join(BASE,
'..',
'..',
'..',
'..'))
11 DATA = [join(ROOT,
'atest',
'testdata',
'misc'), join(BASE,
'dir.suite')]
12 SRC = join(ROOT,
'src')
14 OUTPUT = join(BASE,
'..',
'testdoc.js')
15 REAL_OUTPUT = join(BASE,
'testdoc.js')
17 sys.path.insert(0, SRC)
21 with open(OUTPUT,
'w')
as output:
24 shutil.move(OUTPUT, REAL_OUTPUT)
def TestSuiteFactory(datasources, **options)
def abspath(path, case_normalize=False)
Replacement for os.path.abspath with some enhancements and bug fixes.
def normpath(path, case_normalize=False)
Replacement for os.path.normpath with some enhancements.