diff options
Diffstat (limited to 'RoboFile.php')
-rw-r--r-- | RoboFile.php | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/RoboFile.php b/RoboFile.php deleted file mode 100644 index 9245e1b..0000000 --- a/RoboFile.php +++ /dev/null @@ -1,17 +0,0 @@ -<?php -/** - * This is project's console commands configuration for Robo task runner. - * - * @see http://robo.li/ - */ -class RoboFile extends \Robo\Tasks -{ - public function test () { - $res = $this->taskExec('phpunit --coverage-html test/output/report --bootstrap test/unit/bootstrap.php ./test/unit')->run(); - - // print message when tests passed - if ($res->wasSuccessful()) $this->say("All tests passed"); - - return $res(); - } -} |