Clean up descriptions

This commit is contained in:
Joe Gregorio
2010-11-29 07:55:08 -05:00
parent bc2ff9bc4e
commit a12c7d68d7
3 changed files with 6 additions and 6 deletions

View File

@@ -53,7 +53,7 @@ class BuzzGaeClientTest(unittest.TestCase):
self.assertEquals(consumer_secret, usable_token['consumer_secret'])
self.assertTrue(usable_token['access_token'] is not None)
def test_can_build_apiary_client_with_access_token(self):
def test_can_build_apiclient_with_access_token(self):
client = buzz_gae_client.BuzzGaeClient()
oauth_parameters = {}
oauth_parameters['oauth_token'] = ''
@@ -71,4 +71,4 @@ class BuzzGaeClientTest(unittest.TestCase):
self.assertEquals(count, len(activities))
if __name__ == '__main__':
unittest.main()
unittest.main()

View File

@@ -68,7 +68,7 @@ class MainHandler(webapp.RequestHandler):
<li><a href='/customsearch/v1'>customsearch</a>
<li><a href='/diacritize/v1'>diacritize</a>
<li><a href='/translate/v2'>translate</a>
<li><a href='/prediction/v1'>prediction</a>
<li><a href='/prediction/v1.1'>prediction</a>
</ul>
""")
@@ -119,8 +119,8 @@ def main():
application = webapp.WSGIApplication(
[
(r'/', MainHandler),
(r'/(\w*)/(\w*)', ServiceHandler),
(r'/(\w*)/(\w*)/(.*)', CollectionHandler),
(r'/([^\/]*)/([^\/]*)', ServiceHandler),
(r'/([^\/]*)/([^\/]*)/(.*)', CollectionHandler),
],
debug=True)
util.run_wsgi_app(application)

View File

@@ -1,7 +1,7 @@
{
"name": "zoo",
"version": "v1",
"description": "Zoo API used for Apiary testing",
"description": "Zoo API used for testing",
"restBasePath": "/zoo",
"rpcPath": "/rpc",
"resources": {