renaming steps big time - more consistent - easier to remember
[tests.git] / system / step_fresh_install.py
1 # Thierry Parmentelat <thierry.parmentelat@inria.fr>
2 # Copyright (C) 2010 INRIA 
3 #
4 from TestPlc import TestPlc
5
6 def run01_uninstall (test_plc):
7     return test_plc.uninstall()
8 def run02_install (test_plc):
9     return test_plc.install()
10 def run03_configure (test_plc):
11     return test_plc.configure()
12 def run04_dump_just_installed (test_plc):
13     options.dbname='just-installed'
14     return test_plc.plc_db_dump()