diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-05-18 17:19:21 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-05-18 17:19:21 +0200 |
commit | 5dc46fec654ec6ee57334e61005967dc5e557e6c (patch) | |
tree | a48524eb060af5d9f2c13ed8f5cf6b763720fc1d /tasks/test.rake | |
parent | cb0ffa6cfd04dfae81bce57fbbe528f719d3efe5 (diff) | |
download | edoors-ruby-5dc46fec654ec6ee57334e61005967dc5e557e6c.zip edoors-ruby-5dc46fec654ec6ee57334e61005967dc5e557e6c.tar.gz |
remove rake tasks
Diffstat (limited to 'tasks/test.rake')
-rw-r--r-- | tasks/test.rake | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/tasks/test.rake b/tasks/test.rake deleted file mode 100644 index 8257613..0000000 --- a/tasks/test.rake +++ /dev/null @@ -1,41 +0,0 @@ -# -*- coding: UTF-8 -*- -# -if test(?e, PROJ.test.file) or not PROJ.test.files.to_a.empty? -require 'rake/testtask' - -namespace :test do - - Rake::TestTask.new(:run) do |t| - t.libs = PROJ.libs - t.test_files = if test(?f, PROJ.test.file) then [PROJ.test.file] - else PROJ.test.files end - t.ruby_opts += PROJ.ruby_opts - t.ruby_opts += PROJ.test.opts - end - - if HAVE_RCOV - desc 'Run rcov on the unit tests' - task :rcov => :clobber_rcov do - opts = PROJ.rcov.opts.dup << '-o' << PROJ.rcov.dir - opts = opts.join(' ') - files = if test(?f, PROJ.test.file) then [PROJ.test.file] - else PROJ.test.files end - files = files.join(' ') - sh "#{RCOV} #{files} #{opts}" - end - - task :clobber_rcov do - rm_r 'coverage' rescue nil - end - end - -end # namespace :test - -desc 'Alias to test:run' -task :test => 'test:run' - -task :clobber => 'test:clobber_rcov' if HAVE_RCOV - -end - -# EOF |