summaryrefslogtreecommitdiffstats
path: root/RoboFile.php
diff options
context:
space:
mode:
authornornholdj <nornholdj@gmail.com>2014-11-14 16:25:36 -0500
committernornholdj <nornholdj@gmail.com>2014-11-14 16:25:36 -0500
commit2ca3b8764d9e7ad8c7436e53b6676e9eb6591f28 (patch)
tree6934c8cf3d9c91852a76e57314246e17c81b4f80 /RoboFile.php
parent39f2699a7e7850397882a6d2ee3a8438a105b72d (diff)
parent3095de0dca14565911a2bdcc1ee5960e63b9b1f4 (diff)
downloadphp-sparkpost-2ca3b8764d9e7ad8c7436e53b6676e9eb6591f28.zip
php-sparkpost-2ca3b8764d9e7ad8c7436e53b6676e9eb6591f28.tar.gz
php-sparkpost-2ca3b8764d9e7ad8c7436e53b6676e9eb6591f28.tar.bz2
Merge branch 'feature/MA-1084' into develop
Diffstat (limited to 'RoboFile.php')
-rw-r--r--RoboFile.php17
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();
- }
-}