Group listing bug is now fixed in the Buzz back-end so I've enabled the test
This commit is contained in:
@@ -228,11 +228,9 @@ class BuzzAuthenticatedFunctionalTest(unittest.TestCase):
|
|||||||
"content": "A comment on the new activity"
|
"content": "A comment on the new activity"
|
||||||
}).execute()
|
}).execute()
|
||||||
|
|
||||||
def IGNORE__test_can_list_groups_belonging_to_user(self):
|
def test_can_list_groups_belonging_to_user(self):
|
||||||
# TODO(ade) Uncomment this test once the related Buzz back-end bug is fixed
|
|
||||||
buzz = build('buzz', 'v1', http=self.http)
|
buzz = build('buzz', 'v1', http=self.http)
|
||||||
groups = buzz.groups().list(userId='108242092577082601423').execute()
|
groups = buzz.groups().list(userId='108242092577082601423').execute()
|
||||||
pprint.pprint(groups)
|
|
||||||
|
|
||||||
group = buzz.groups().get(userId='108242092577082601423', groupId='G:108242092577082601423:15').execute()
|
group = buzz.groups().get(userId='108242092577082601423', groupId='G:108242092577082601423:15').execute()
|
||||||
self.assertEquals('G:108242092577082601423:15', group['id'], group)
|
self.assertEquals('G:108242092577082601423:15', group['id'], group)
|
||||||
@@ -246,9 +244,6 @@ class BuzzAuthenticatedFunctionalTest(unittest.TestCase):
|
|||||||
group = buzz.groups().get(userId='108242092577082601423', groupId='G:108242092577082601423:6').execute()
|
group = buzz.groups().get(userId='108242092577082601423', groupId='G:108242092577082601423:6').execute()
|
||||||
self.assertEquals('G:108242092577082601423:6', group['id'], group)
|
self.assertEquals('G:108242092577082601423:6', group['id'], group)
|
||||||
|
|
||||||
group = buzz.groups().get(userId='108242092577082601423', groupId='G:108242092577082601423:9999999').execute()
|
|
||||||
self.assertEquals(None, group, group)
|
|
||||||
|
|
||||||
def test_can_delete_activity(self):
|
def test_can_delete_activity(self):
|
||||||
buzz = build('buzz', 'v1', http=self.http)
|
buzz = build('buzz', 'v1', http=self.http)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user