From db8a66447655d1c6cebb4bb61172c38460cf83d3 Mon Sep 17 00:00:00 2001 From: Adrian Likins Date: Mon, 4 Feb 2008 18:56:18 -0500 Subject: dont test for the "@blippy" group yet till I setup a way to put the right config file in place (or mock object, whatever...) --- test/unittest/test_groups.py | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) (limited to 'test') diff --git a/test/unittest/test_groups.py b/test/unittest/test_groups.py index 639022a..32da15c 100644 --- a/test/unittest/test_groups.py +++ b/test/unittest/test_groups.py @@ -5,6 +5,12 @@ import func.overlord.client as fc +class GroupBuilder(object): + def __init__(self): + pass + + + class TestGroups(object): @@ -16,7 +22,10 @@ class TestGroups(object): result = fc.get_groups() print result - def test_get_hosts_by_groupgoo(self): - group_dict = fc.get_groups() - hosts = fc.get_hosts_by_groupgoo(group_dict, "@blippy") - print hosts +# FIXME: comment this out till I setup a way to test with a speciic +# test config -akl + +# def test_get_hosts_by_groupgoo(self): +# group_dict = fc.get_groups() +# hosts = fc.get_hosts_by_groupgoo(group_dict, "@blippy") +# print hosts -- cgit