Update the template for model sync test docs

Update the docs to match the changes from
  https://review.openstack.org/332476

Related-bug: #1594898

Change-Id: Iefebbac213db043e27b5244b63df1e04ee9cdc4f
This commit is contained in:
Henry Gessau 2016-07-01 12:50:34 -04:00
parent 78dc79146f
commit 92934ddb91
1 changed files with 7 additions and 5 deletions

View File

@ -98,8 +98,8 @@ with the following content: ::
from neutron.db.migration.alembic_migrations import external
from neutron.db.migration import cli as migration
from neutron.tests.common import base
from neutron.tests.functional.db import test_migrations
from neutron.tests.unit import testlib_api
from networking_foo.db.migration import alembic_migrations
from networking_foo.db.models import head
@ -130,13 +130,15 @@ with the following content: ::
return True
class TestModelsMigrationsMysql(_TestModelsMigrationsFoo,
base.MySQLTestCase):
class TestModelsMigrationsMysql(testlib_api.MySQLTestCaseMixin,
_TestModelsMigrationsFoo,
testlib_api.SqlTestCaseLight):
pass
class TestModelsMigrationsPsql(_TestModelsMigrationsFoo,
base.PostgreSQLTestCase):
class TestModelsMigrationsPsql(testlib_api.PostgreSQLTestCaseMixin,
_TestModelsMigrationsFoo,
testlib_api.SqlTestCaseLight):
pass