summaryrefslogtreecommitdiffstats
path: root/RoboFile.php
diff options
context:
space:
mode:
authornornholdj <nornholdj@gmail.com>2014-11-13 14:03:52 -0500
committernornholdj <nornholdj@gmail.com>2014-11-13 14:03:52 -0500
commitaeb73442306e915e54d1f53d6fae68c060c57d73 (patch)
treecc29a1d69276c1d14c212a881679b309f95af66a /RoboFile.php
parentb79ffee50f7d7c655a1cfcec03081a2ae138a8ea (diff)
downloadphp-sparkpost-aeb73442306e915e54d1f53d6fae68c060c57d73.zip
php-sparkpost-aeb73442306e915e54d1f53d6fae68c060c57d73.tar.gz
php-sparkpost-aeb73442306e915e54d1f53d6fae68c060c57d73.tar.bz2
MA-1084 #time 10m tested in a PHP 5.3 environment and updated README.md
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();
- }
-}