~ubuntu-branches/ubuntu/saucy/keystone/saucy-proposed

« back to all changes in this revision

Viewing changes to keystone/tests/test_keystoneclient.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2013-10-02 11:46:14 UTC
  • mfrom: (1.1.37)
  • Revision ID: package-import@ubuntu.com-20131002114614-pw4xkjdvowr9u34w
Tags: 1:2013.2~rc1-0ubuntu1
* New upstream version.
* debian/control:
  - Add versioned dependencies to python-pbr, python-dogpile.cache,
    python-oslo.config, python-webob, python-pam, python-sqlalchemy,
    python-testtools, and python-requests.
  - Added python-greenlet, python-requests, python-netifaces,
    and python-setuptools as a build dependency.
  - Dropped python-swift, python-unittest, python-d2to1,
    as a build dependency.
  - Bumped versioned depends for python-keystoneclient.
* debian/patches/disable-oauth2.patch: Refreshed

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# vim: tabstop=4 shiftwidth=4 softtabstop=4
2
2
 
3
 
# Copyright 2012 OpenStack LLC
 
3
# Copyright 2012 OpenStack Foundation
4
4
#
5
5
# Licensed under the Apache License, Version 2.0 (the "License"); you may
6
6
# not use this file except in compliance with the License. You may obtain
21
21
from keystone import config
22
22
from keystone.openstack.common import jsonutils
23
23
from keystone.openstack.common import timeutils
24
 
from keystone.tests import core as test
 
24
from keystone import tests
 
25
from keystone.tests import default_fixtures
25
26
 
26
 
import default_fixtures
27
27
 
28
28
CONF = config.CONF
29
29
DEFAULT_DOMAIN_ID = CONF.identity.default_domain_id
31
31
KEYSTONECLIENT_REPO = '%s/python-keystoneclient.git' % OPENSTACK_REPO
32
32
 
33
33
 
34
 
class CompatTestCase(test.TestCase):
 
34
class CompatTestCase(tests.TestCase):
35
35
    def setUp(self):
36
36
        super(CompatTestCase, self).setUp()
37
37