~ubuntu-branches/ubuntu/quantal/keystone/quantal-security

« back to all changes in this revision

Viewing changes to tests/test_keystoneclient_sql.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2012-06-22 12:27:50 UTC
  • mto: (35.1.1 quantal-proposed)
  • mto: This revision was merged to the branch mainline in revision 28.
  • Revision ID: package-import@ubuntu.com-20120622122750-4urdq17en1990apn
Tags: upstream-2012.2~f2~20120622.2353
ImportĀ upstreamĀ versionĀ 2012.2~f2~20120622.2353

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
 
29
29
class KcMasterSqlTestCase(test_keystoneclient.KcMasterTestCase):
30
 
    def config(self):
31
 
        CONF(config_files=[test.etcdir('keystone.conf.sample'),
32
 
                           test.testsdir('test_overrides.conf'),
33
 
                           test.testsdir('backend_sql.conf')])
 
30
    def config(self, config_files):
 
31
        super(KcMasterSqlTestCase, self).config([
 
32
                test.etcdir('keystone.conf.sample'),
 
33
                test.testsdir('test_overrides.conf'),
 
34
                test.testsdir('backend_sql.conf')])
34
35
        sql_util.setup_test_database()
35
36
 
36
37
    def test_endpoint_crud(self):