tempest/kong/openstack.py
Aaron Lee 35b8c921e9 test supporting API v1.1
Updating some of the test to support api v1.1

Change-Id: I22c8650d8be02031204b23b7d39c6c6fc5294ca9
2011-10-19 16:23:03 -05:00

15 lines
439 B
Python

import kong.config
import kong.nova
class Manager(object):
"""Top-level object to access OpenStack resources."""
def __init__(self, nova):
self.nova = kong.nova.API(nova['host'],
nova['port'],
nova['ver'],
nova['user'],
nova['key'],
nova['project'])