mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
#1218 - ENH: Bump to migration 11.2.1 with support for options patchInsertOn and patchResetChecksumOn
This commit is contained in:
@@ -29,6 +29,8 @@ public class DbMigrationConfigTest {
|
||||
Properties properties = new Properties();
|
||||
properties.setProperty("ebean.migration.dbusername", "banana");
|
||||
properties.setProperty("ebean.migration.dbpassword", "apple");
|
||||
properties.setProperty("ebean.migration.patchInsertOn", "1.3,my_views");
|
||||
properties.setProperty("ebean.migration.patchResetChecksumOn", "foo");
|
||||
|
||||
PropertiesWrapper wrapper = new PropertiesWrapper("ebean", "db", properties);
|
||||
|
||||
@@ -37,6 +39,8 @@ public class DbMigrationConfigTest {
|
||||
|
||||
assertEquals(migrationConfig.getDbUsername(),"banana");
|
||||
assertEquals(migrationConfig.getDbPassword(),"apple");
|
||||
assertEquals(migrationConfig.getPatchInsertOn(),"1.3,my_views");
|
||||
assertEquals(migrationConfig.getPatchResetChecksumOn(),"foo");
|
||||
}
|
||||
|
||||
@Test
|
||||
|
||||
Reference in New Issue
Block a user