From: Jean-Philippe Lang Date: Mon, 10 Jan 2011 17:43:01 +0000 (+0000) Subject: Store the mercurial test repository as a bundle to make it compatible with older... X-Git-Tag: 1.2.0~1105 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=2cbf60851fe95e57264c1abfb778bde1f05fa6e7;p=redmine.git Store the mercurial test repository as a bundle to make it compatible with older hg versions. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4676 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/lib/tasks/testing.rake b/lib/tasks/testing.rake index 45066ae30..0fd6a19b0 100644 --- a/lib/tasks/testing.rake +++ b/lib/tasks/testing.rake @@ -40,7 +40,18 @@ namespace :test do system "gunzip < test/fixtures/repositories/subversion_repository.dump.gz | svnadmin load #{repo_path}" end - (supported_scms - [:subversion]).each do |scm| + desc "Creates a test mercurial repository" + task :mercurial => :create_dir do + repo_path = "tmp/test/mercurial_repository" + FileUtils.mkdir_p repo_path + Dir.chdir repo_path do + system "hg init" + system "hg unbundle ../../../test/fixtures/repositories/mercurial_repository.hg" + system "hg update" + end + end + + (supported_scms - [:subversion, :mercurial]).each do |scm| desc "Creates a test #{scm} repository" task scm => :create_dir do system "gunzip < test/fixtures/repositories/#{scm}_repository.tar.gz | tar -xv -C tmp/test" diff --git a/test/fixtures/repositories/mercurial_repository.hg b/test/fixtures/repositories/mercurial_repository.hg new file mode 100644 index 000000000..c06844d23 Binary files /dev/null and b/test/fixtures/repositories/mercurial_repository.hg differ diff --git a/test/fixtures/repositories/mercurial_repository.tar.gz b/test/fixtures/repositories/mercurial_repository.tar.gz deleted file mode 100644 index c0b9f4373..000000000 Binary files a/test/fixtures/repositories/mercurial_repository.tar.gz and /dev/null differ