##// END OF EJS Templates
remove trailing white-spaces from lib/tasks/testing.rake....
Toshi MARUYAMA -
r6150:98b29b445dcc
parent child
Show More
@@ -30,16 +30,16 namespace :test do
30 30 task :create_dir do
31 31 FileUtils.mkdir_p Rails.root + '/tmp/test'
32 32 end
33
33
34 34 supported_scms = [:subversion, :cvs, :bazaar, :mercurial, :git, :darcs, :filesystem]
35
35
36 36 desc "Creates a test subversion repository"
37 37 task :subversion => :create_dir do
38 38 repo_path = "tmp/test/subversion_repository"
39 39 system "svnadmin create #{repo_path}"
40 40 system "gunzip < test/fixtures/repositories/subversion_repository.dump.gz | svnadmin load #{repo_path}"
41 41 end
42
42
43 43 desc "Creates a test mercurial repository"
44 44 task :mercurial => :create_dir do
45 45 repo_path = "tmp/test/mercurial_repository"
@@ -47,7 +47,7 namespace :test do
47 47 system "hg init #{repo_path}"
48 48 system "hg -R #{repo_path} pull #{bundle_path}"
49 49 end
50
50
51 51 (supported_scms - [:subversion, :mercurial]).each do |scm|
52 52 desc "Creates a test #{scm} repository"
53 53 task scm => :create_dir do
@@ -55,11 +55,11 namespace :test do
55 55 system "tar -xvz -C tmp/test -f test/fixtures/repositories/#{scm}_repository.tar.gz"
56 56 end
57 57 end
58
58
59 59 desc "Creates all test repositories"
60 60 task :all => supported_scms
61 61 end
62
62
63 63 desc "Updates installed test repositories"
64 64 task :update do
65 65 require 'fileutils'
@@ -68,19 +68,19 namespace :test do
68 68 scm = $1
69 69 next unless fixture = Dir.glob("test/fixtures/repositories/#{scm}_repository.*").first
70 70 next if File.stat(dir).ctime > File.stat(fixture).mtime
71
71
72 72 FileUtils.rm_rf dir
73 73 Rake::Task["test:scm:setup:#{scm}"].execute
74 74 end
75 75 end
76
76
77 77 Rake::TestTask.new(:units => "db:test:prepare") do |t|
78 78 t.libs << "test"
79 79 t.verbose = true
80 80 t.test_files = FileList['test/unit/repository*_test.rb'] + FileList['test/unit/lib/redmine/scm/**/*_test.rb']
81 81 end
82 82 Rake::Task['test:scm:units'].comment = "Run the scm unit tests"
83
83
84 84 Rake::TestTask.new(:functionals => "db:test:prepare") do |t|
85 85 t.libs << "test"
86 86 t.verbose = true
General Comments 0
You need to be logged in to leave comments. Login now