Skip to content

Commit

Permalink
Rename test folder to tests
Browse files Browse the repository at this point in the history
  • Loading branch information
augusito committed Oct 16, 2019
1 parent 7c227c1 commit fe64a81
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
/composer.lock export-ignore
/phpcs.xml.dist export-ignore
/phpunit.xml.dist export-ignore
/test export-ignore
/tests export-ignore
/docs export-ignore
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,28 @@

All notable changes to this project will be documented in this file.

## 1.1.0 - 2019-10-16

### Added
- Nothing

### Changed
- Rename test folder to tests, and all instances where it is referenced, in order to comply with the loom guideline
- Rename the main class `ConfigAggregator` to `ConfigGather`

### Deprecated
- Nothing

### Fixed
- Nothing

### Removed
- Nothing

### Security
- Nothing


## 1.0.0 - 2019-10-11

### Added
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
},
"autoload-dev": {
"psr-4": {
"LoomTest\\Config\\": "test"
"LoomTest\\Config\\": "tests"
}
},
"config": {
Expand All @@ -49,8 +49,8 @@
"@check-style",
"@test"
],
"check-style": "phpcs src test",
"fix-style": "phpcbf src test",
"check-style": "phpcs src tests",
"fix-style": "phpcbf src tests",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
Expand Down
2 changes: 1 addition & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
colors="true">
<testsuites>
<testsuite name="Loom Test Suite">
<directory>./test</directory>
<directory>./tests</directory>
</testsuite>
</testsuites>

Expand Down
4 changes: 2 additions & 2 deletions src/ConfigGather.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
use function var_export;

/**
* Aggregate configuration generated by configuration providers.
* Gather configuration generated by configuration providers.
*/
class ConfigAggregator
class ConfigGather
{
const ENABLE_CACHE = 'config_cache_enabled';

Expand Down

0 comments on commit fe64a81

Please sign in to comment.