From 052474ddd2c9ff2b5006e837cde157cd275774eb Mon Sep 17 00:00:00 2001 From: crynobone Date: Tue, 7 Oct 2014 13:09:02 +0800 Subject: [PATCH] Remove Guardfile. Signed-off-by: crynobone --- Guardfile | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 Guardfile diff --git a/Guardfile b/Guardfile deleted file mode 100644 index 09e3ecb..0000000 --- a/Guardfile +++ /dev/null @@ -1,7 +0,0 @@ -guard :phpunit2, :all_on_start => false, :tests_path => 'tests/', :cli => '--colors -c build/phpunit.xml' do - # Run any test in app/tests upon save. - watch(%r{^.+Test\.php$}) - - # When a file is edited, try to run its associated test. - watch(%r{^src/(.+)/(.+)\.php$}) { |m| "tests/#{m[2]}Test.php"} -end