Модифицировал ручные тесты
This commit is contained in:
parent
e51aa4990c
commit
e942ce40ec
|
|
@ -1,6 +1,6 @@
|
|||
from CommandBuilders.RestoreBackupCommandBuilder import RestoreBackupCommandBuilder
|
||||
|
||||
line = "restore from backup 'BuildSample'"
|
||||
line = "restore from backup"
|
||||
|
||||
builder = RestoreBackupCommandBuilder()
|
||||
command = builder.getCommandFor(line)
|
||||
|
|
|
|||
|
|
@ -4,14 +4,16 @@ scriptFilePath = os.path.abspath(__file__)
|
|||
scriptDir = os.path.dirname(scriptFilePath)
|
||||
baseDir = os.path.join(scriptDir, os.pardir, os.pardir)
|
||||
|
||||
os.chdir(baseDir)
|
||||
baseDirAbsPath = os.path.abspath(baseDir)
|
||||
os.chdir(baseDirAbsPath)
|
||||
print 'current working dir: {0}'.format(baseDirAbsPath)
|
||||
|
||||
#import Tests.ManualTests.csproj_test
|
||||
#import ManualTests.info_plist_test
|
||||
#import ManualTests.copy_test
|
||||
#import Tests.ManualTests.create_backup_test
|
||||
import Tests.ManualTests.delete_backup_test
|
||||
#import Tests.ManualTests.restore_backup_test
|
||||
#import Tests.ManualTests.delete_backup_test
|
||||
import Tests.ManualTests.restore_backup_test
|
||||
#import ManualTests.csproj_test
|
||||
#import ManualTests.run_sh_command
|
||||
#import ManualTests.make_dirs
|
||||
|
|
|
|||
Loading…
Reference in New Issue