Merge "Follow up patch to address reviewer comments on 241770"

This commit is contained in:
Jenkins 2015-11-30 15:21:13 +00:00 committed by Gerrit Code Review
commit ae05e413b6
1 changed files with 7 additions and 7 deletions

View File

@ -13,10 +13,10 @@
# under the License.
"""
test_bifrost
test_inventory
----------------------------------
Tests for `bifrost` module.
Tests for `inventory` module.
"""
from bifrost import inventory
@ -31,11 +31,11 @@ class TestBifrostInventory(base.TestCase):
self.assertIn("localhost", groups)
self.assertDictEqual(hostvars, {})
localhost_value = dict(hosts=["127.0.0.1"])
self.assertDictEqual(groups['localhost'], localhost_value)
self.assertDictEqual(localhost_value, groups['localhost'])
def test__val_or_none(self):
array = ['no', '', 'yes']
self.assertEqual(inventory._val_or_none(array, 0), 'no')
self.assertEqual(inventory._val_or_none(array, 1), None)
self.assertEqual(inventory._val_or_none(array, 2), 'yes')
self.assertEqual(inventory._val_or_none(array, 4), None)
self.assertEqual('no', inventory._val_or_none(array, 0))
self.assertEqual(None, inventory._val_or_none(array, 1))
self.assertEqual('yes', inventory._val_or_none(array, 2))
self.assertEqual(None, inventory._val_or_none(array, 4))