Skip to content

Commit 4893f22

Browse files
Enhancement: Rename "test" folder to "tests" (#332)
Because it is considered a best practice Co-authored-by: Gabriel Anca Corral <[email protected]>
1 parent a8f23d3 commit 4893f22

22 files changed

+5
-5
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- run: composer validate --strict
1212
- run: composer install --no-interaction --no-suggest --prefer-dist
1313
- run: vendor/bin/phpunit
14-
- run: vendor/bin/phpcs --standard=PSR2 src test
14+
- run: vendor/bin/phpcs --standard=PSR2 src tests
1515

1616
test-7.3:
1717
<<: *test-template

.codeclimate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
exclude_paths:
2-
- test/*
2+
- tests/*

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/.circleci export-ignore
44
/.github export-ignore
5-
/test export-ignore
5+
/tests export-ignore
66
.codeclimate.yml export-ignore
77
.editorconfig export-ignore
88
.gitattributes export-ignore

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"autoload-dev": {
2929
"psr-4": {
3030
"Intercom\\Test\\": [
31-
"test"
31+
"tests"
3232
]
3333
}
3434
},

phpunit.xml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
>
1212
<testsuites>
1313
<testsuite name="Intercom Test Suite">
14-
<directory suffix=".php">./test/</directory>
14+
<directory suffix=".php">./tests/</directory>
1515
</testsuite>
1616
</testsuites>
1717
</phpunit>

0 commit comments

Comments
 (0)