Example #1
0
def command_base():
    config.TESTING = True
    dpath = utils.get_data_path('')

    if os.path.exists(dpath):
        utils.rmtree(dpath)

    base = CommandBase()
    base._project_name = 'Test'
    return base
Example #2
0
def command_base():
    base = CommandBase()
    base._project_name = 'Test'
    return base