Skip to content

Commit 3b5391b

Browse files
committed
Renamed tests
1 parent 511ba2b commit 3b5391b

File tree

8 files changed

+4
-4
lines changed

8 files changed

+4
-4
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"autoload-dev" : {
3131
"classmap" : [
3232
"tests/Unit",
33-
"tests/Feature"
33+
"tests/Integration"
3434
]
3535
},
3636
"extra": {

phpunit.xml.dist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
<testsuite name="Unit Tests">
1313
<directory suffix="Test.php">./tests/Unit</directory>
1414
</testsuite>
15-
<testsuite name="Feature Tests">
16-
<directory suffix="Test.php">./tests/Feature</directory>
15+
<testsuite name="Integration Tests">
16+
<directory suffix="Test.php">./tests/Integration</directory>
1717
</testsuite>
1818
</testsuites>
1919
<listeners>

tests/Feature/SpatialTest.php renamed to tests/Integration/SpatialTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public function createApplication()
2525

2626
$app['config']->set('database.default', 'mysql');
2727
$app['config']->set('database.connections.mysql.host', env('DB_HOST', '127.0.0.1'));
28-
$app['config']->set('database.connections.mysql.database', 'test');
28+
$app['config']->set('database.connections.mysql.database', 'spatial_test');
2929
$app['config']->set('database.connections.mysql.username', 'root');
3030
$app['config']->set('database.connections.mysql.password', '');
3131

0 commit comments

Comments
 (0)