diff --git a/.gitignore b/.gitignore index 8663f3f..0200a71 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ Gemfile.lock build vendor composer.lock +phpunit.xml diff --git a/.travis.yml b/.travis.yml index 069e73c..438d849 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,7 @@ php: install: - composer install --dev script: - - phpunit -c phpunit.xml + - ./vendor/bin/phpunit after_script: - ./vendor/bin/test-reporter env: diff --git a/composer.json b/composer.json index 689592f..95c2a8e 100644 --- a/composer.json +++ b/composer.json @@ -30,6 +30,6 @@ "classmap": ["AltoRouter.php"] }, "scripts": { - "test": "vendor/bin/phpunit AltoRouterTest.php" + "test": "vendor/bin/phpunit" } } diff --git a/phpunit.xml b/phpunit.xml.dist similarity index 100% rename from phpunit.xml rename to phpunit.xml.dist