This file contains hidden or 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
desc "Verify CakePHP TestSuite pass" | |
task :testsuite, :roles => :app do | |
run "#{release_path}/#{cakephp_core_path}/console/cake testsuite app all -app #{release_path}/#{cakephp_app_path}", :env => { :TERM => "linux" } do |channel, stream, data| | |
puts data | |
if stream == :err then | |
error = CommandError.new("CakePHP TestSuite failed") | |
raise error | |
end | |
end | |
end |