8000 Merge pull request #6 from TomHAnderson/hotfix/doctrine-type-registra… · TomHAnderson/laravel-framework@d181640 · GitHub
[go: up one dir, main page]

Skip to content

Commit d181640

Browse files
Merge pull request laravel#6 from TomHAnderson/hotfix/doctrine-type-registration-test-names
Changed test names to camelCase
2 parents 6f97406 + 67c9612 commit d181640

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/Integration/Database/ConfigureCustomDoctrineTypeTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ protected function resolveApplicationConfiguration($app)
2222
];
2323
}
2424

25-
public function test_register_custom_doctrine_types_on_multiple_database_connections_with_postgres()
25+
public function testRegisterCustomDoctrineTypesOnMultipleDatabaseConnectionsWithPostgres()
2626
{
2727
if ($this->driver !== 'pgsql') {
2828
$this->markTestSkipped('Test requires a Postgres connection.');
@@ -45,7 +45,7 @@ public function test_register_custom_doctrine_types_on_multiple_database_connect
4545
);
4646
}
4747

48-
public function test_register_custom_doctrine_types_on_multiple_database_connections_with_mysql()
48+
public function testRegisterCustomDoctrineTypesOnMultipleDatabaseConnectionsWithMysql()
4949
{
5050
if ($this->driver !== 'mysql') {
5151
$this->markTestSkipped('Test requires a MySQL connection.');
@@ -68,7 +68,7 @@ public function test_register_custom_doctrine_types_on_multiple_database_connect
6868
);
6969
}
7070

71-
public function test_rename_column_with_postgres_and_custom_doctrine_type_in_config()
71+
public function testRenameColumnWithPostgresAndCustomDoctrineTypeInConfig()
7272
{
7373
if ($this->driver !== 'pgsql') {
7474
$this->markTestSkipped('Test requires a Postgres connection.');
@@ -90,7 +90,7 @@ public function test_rename_column_with_postgres_and_custom_doctrine_type_in_con
9090
$this->assertTrue(Schema::hasColumn('test', 'renamed_column'));
9191
}
9292

93-
public function test_rename_column_with_mysql_and_custom_doctrine_type_in_config()
93+
public function testRenameColumnWithMysqlAndCustomDoctrineTypeInConfig()
9494
{
9595
if ($this->driver !== 'mysql') {
9696
$this->markTestSkipped('Test requires a MySQL connection.');

0 commit comments

Comments
 (0)
0