Extracted all global parameters into functest_constants.py
[functest.git] / functest / opnfv_tests / features / multisite.py
1 #!/usr/bin/python
2 #
3 # Copyright (c) 2015 All rights reserved
4 # This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 #
8 # http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Execute Multisite Tempest test cases
11 #
12 import functest.utils.functest_logger as ft_logger
13
14 logger = ft_logger.Logger("multisite").getLogger()
15
16
17 def main():
18     logger.info("multisite OK")
19
20
21 if __name__ == '__main__':
22     main()