def Post(self): return {'configurations': bot_configurations.List()}
def get(self): self.response.out.write( json.dumps({ 'configurations': bot_configurations.List(), }))
def testList(self): actual = bot_configurations.List() expected = ['mac-11-perf'] self.assertEqual(actual, expected)