Merge "Reorder test imports by full import path"

This commit is contained in:
Jenkins 2012-07-03 19:03:25 +00:00 committed by Gerrit Code Review
commit ed43d47b82
15 changed files with 29 additions and 29 deletions

View File

@ -17,8 +17,8 @@
import subprocess
from keystone import config
from keystone import test
from keystone.identity.backends import ldap as identity_ldap
from keystone import test
import default_fixtures
import test_backend

View File

@ -14,9 +14,9 @@
# License for the specific language governing permissions and limitations
# under the License.
import webob
import datetime
import iso8601
import webob
from keystone.middleware import auth_token
from keystone.openstack.common import jsonutils

View File

@ -15,15 +15,15 @@
# under the License.
import uuid
from keystone import exception
from keystone import test
from keystone.identity.backends import kvs as identity_kvs
from keystone.token.backends import kvs as token_kvs
from keystone.catalog.backends import kvs as catalog_kvs
from keystone import catalog
from keystone.catalog.backends import kvs as catalog_kvs
from keystone import exception
from keystone.identity.backends import kvs as identity_kvs
from keystone import test
from keystone.token.backends import kvs as token_kvs
import test_backend
import default_fixtures
import test_backend
class KvsIdentity(test.TestCase, test_backend.IdentityTests):

View File

@ -16,11 +16,11 @@
import uuid
from keystone.common.ldap import fakeldap
from keystone import config
from keystone import exception
from keystone import test
from keystone.common.ldap import fakeldap
from keystone.identity.backends import ldap as identity_ldap
from keystone import test
import default_fixtures
import test_backend

View File

@ -16,15 +16,15 @@
import uuid
from keystone.common.sql import util as sql_util
from keystone import config
from keystone import exception
from keystone import test
from keystone.common.sql import util as sql_util
from keystone.identity.backends import sql as identity_sql
from keystone import test
from keystone.token.backends import sql as token_sql
import test_backend
import default_fixtures
import test_backend
CONF = config.CONF

View File

@ -17,13 +17,13 @@
import os
import uuid
from keystone import catalog
from keystone.catalog.backends import templated as catalog_templated
from keystone import exception
from keystone import test
from keystone.catalog.backends import templated as catalog_templated
from keystone import catalog
import test_backend
import default_fixtures
import test_backend
DEFAULT_CATALOG_TEMPLATES = os.path.abspath(os.path.join(
os.path.dirname(__file__),

View File

@ -19,12 +19,12 @@ import os
import sqlite3
#import sqlalchemy
from keystone import config
from keystone import test
from keystone.catalog.backends import templated as catalog_templated
from keystone.common.sql import legacy
from keystone.common.sql import util as sql_util
from keystone import config
from keystone.identity.backends import sql as identity_sql
from keystone.catalog.backends import templated as catalog_templated
from keystone import test
CONF = config.CONF

View File

@ -16,9 +16,9 @@
import uuid
from keystone.common.sql import util as sql_util
from keystone import config
from keystone import test
from keystone.common.sql import util as sql_util
import test_keystoneclient

View File

@ -18,8 +18,8 @@ import webob
from keystone import config
from keystone import middleware
from keystone import test
from keystone.openstack.common import jsonutils
from keystone import test
CONF = config.CONF

View File

@ -19,11 +19,11 @@ import StringIO
import tempfile
import urllib2
from keystone.common import policy as common_policy
from keystone import config
from keystone import exception
from keystone import test
from keystone.common import policy as common_policy
from keystone.policy.backends import rules
from keystone import test
CONF = config.CONF

View File

@ -16,8 +16,8 @@
import re
from keystone import test
from keystone.common import serializer
from keystone import test
class XmlSerializerTestCase(test.TestCase):

View File

@ -15,12 +15,12 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import os
import httplib
import os
import ssl
from keystone import test
from keystone import config
from keystone import test
CONF = config.CONF

View File

@ -29,8 +29,8 @@
# License for the specific language governing permissions and limitations
# under the License.
from keystone import test
from keystone.common import utils
from keystone import test
class UtilsTestCase(test.TestCase):

View File

@ -16,8 +16,8 @@
# limitations under the License.
from keystone import config
from keystone import test
from keystone.openstack.common import jsonutils
from keystone import test
CONF = config.CONF

View File

@ -16,9 +16,9 @@
import webob
from keystone import test
from keystone.common import wsgi
from keystone.openstack.common import jsonutils
from keystone import test
class ApplicationTest(test.TestCase):