16 lines
334 B
Python
16 lines
334 B
Python
from CommandBuilders.RestoreBackupCommandBuilder import RestoreBackupCommandBuilder
|
|
from ManualTests.path_provider import PathProvider
|
|
|
|
line = "restore from backup"
|
|
|
|
baseDir = '../'
|
|
path_provider = PathProvider(baseDir)
|
|
|
|
builder = RestoreBackupCommandBuilder(path_provider)
|
|
command = builder.getCommandFor(line)
|
|
|
|
command.execute()
|
|
|
|
|
|
|