Test framework reworked for
[tests.git] / system / step-fresh-install.py
1 import utils
2 from TestPlc import TestPlc
3
4 # requirement is to implement
5 # run* (plc_spec, options)
6
7 def run01_uninstall (test_plc,options):
8     return test_plc.uninstall(options)
9 def run02_install (test_plc,options):
10     return test_plc.install(options)
11 def run03_configure (test_plc,options):
12     return test_plc.configure(options)
13 def run04_dump_just_installed (test_plc,options):
14     options.dbname='just-installed'
15     return test_plc.db_dump(options)