Created
July 10, 2014 12:25
-
-
Save andersonfraga/342143088460160440cb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/php | |
<?php | |
require '../phpwatcher.php'; | |
phpwatcher(['./module/','./tests/unit/'], '(.*)\.php', function ($_, $objfile) { | |
echo "\nChanged {$_}\n"; | |
echo ($exec = 'cd ./tests/unit/ && phpunit .') . PHP_EOL; | |
system($exec); | |
echo PHP_EOL; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment