fuel-library/deployment/puppet/osnailyfacter/modular/globals/globals_post.py
Dmitry Ilyin 23b7c6fd83 Add test for modular tasks
* Put tests together with the tasks
* Split tasks into folders

Fuel-CI: disable
Change-Id: I4e09cf80592f7a5125d20ffd72cf8408922d5436
Related-Blueprint: fuel-library-modularization
2015-02-27 22:30:29 +02:00

22 lines
573 B
Python

import os
import unittest
class GlobalsPostTest(unittest.TestCase):
FILE = '/etc/hiera/globals.yaml'
def test_has_globals_yaml(self):
self.assertTrue(os.path.isfile(self.FILE),
'Globals yaml not found!')
def test_has_use_neutron_key(self):
globals_file = open(self.FILE, 'r')
globals_data = globals_file.read()
globals_file.close()
self.assertTrue('use_neutron' in globals_data,
'use_neutron was not found in globals!')
if __name__ == '__main__':
unittest.main()