From 8c9d81fb20d188b853b344d0ac736788f69c1f5a Mon Sep 17 00:00:00 2001 From: Alexey Golovnya Date: Wed, 21 Feb 2018 22:58:28 +0700 Subject: [PATCH] tests/ -> test/ --- composer.json | 4 ++-- phpunit.xml.dist | 2 +- {tests => test}/HandlerAdapterTest.php | 0 {tests => test}/ReaconTest.php | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename {tests => test}/HandlerAdapterTest.php (100%) rename {tests => test}/ReaconTest.php (100%) diff --git a/composer.json b/composer.json index 433a593..1ac20b1 100644 --- a/composer.json +++ b/composer.json @@ -34,8 +34,8 @@ } }, "scripts": { - "test": "phpunit tests/", - "coverage": "phpunit tests/ --coverage-clover clover.xml" + "test": "phpunit", + "coverage": "phpunit --coverage-clover clover.xml" }, "minimum-stability": "dev", "prefer-stable" : true diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 7ff255c..ca2d1e0 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -1,7 +1,7 @@ - tests/ + test/ diff --git a/tests/HandlerAdapterTest.php b/test/HandlerAdapterTest.php similarity index 100% rename from tests/HandlerAdapterTest.php rename to test/HandlerAdapterTest.php diff --git a/tests/ReaconTest.php b/test/ReaconTest.php similarity index 100% rename from tests/ReaconTest.php rename to test/ReaconTest.php