Merge "Replace asserts in __init__ files with __all__"

This commit is contained in:
Jenkins 2014-01-11 14:13:51 +00:00 committed by Gerrit Code Review
commit c6ba06a860
1 changed files with 17 additions and 14 deletions

View File

@ -48,17 +48,20 @@ from openstack_dashboard.api import swift
from openstack_dashboard.api import trove from openstack_dashboard.api import trove
from openstack_dashboard.api import vpn from openstack_dashboard.api import vpn
assert base
assert cinder __all__ = [
assert fwaas "base",
assert glance "cinder",
assert heat "fwaas",
assert keystone "glance",
assert lbaas "heat",
assert network "keystone",
assert neutron "lbaas",
assert nova "network",
assert swift "neutron",
assert ceilometer "nova",
assert trove "swift",
assert vpn "ceilometer",
"trove",
"vpn",
]