~vishvananda/nova/quotas

« back to all changes in this revision

Viewing changes to nova/tests/api/__init__.py

  • Committer: Vishvananda Ishaya
  • Date: 2010-09-21 02:19:28 UTC
  • mfrom: (237.1.47 trunk)
  • Revision ID: vishvananda@yahoo.com-20100921021928-vfawa17sn4s8y06e
merged trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
        result = webob.Request.blank('/test/cloud').get_response(api.API())
53
53
        self.assertNotEqual(result.body, "/cloud")
54
54
 
55
 
    def test_query_api_version(self):
56
 
        pass
 
55
    def test_query_api_versions(self):
 
56
        result = webob.Request.blank('/').get_response(api.API())
 
57
        self.assertTrue('CURRENT' in result.body)
57
58
 
58
59
if __name__ == '__main__':
59
60
    unittest.main()