# release number (eg 0.9.5 or 1.0) or as a revision
# id composed of 12 hexa characters.
theversion = hgversion_from_command_line
- if m = theversion.match(/\b\d+(\.\d+)+\b/)
- m[0].split(".").collect(&:to_i)
+ if m = theversion.match(%r{\A(.*?)((\d+\.)+\d+)})
+ m[2].scan(%r{\d+}).collect(&:to_i)
end
end
def hgversion_from_command_line
- %x{#{HG_BIN} --version}.lines.first.to_s
+ shellout("#{HG_BIN} --version") { |io| io.read }.to_s
end
def template_path
"Mercurial Distributed SCM (1e4ddc9ac9f7+20080325)\n" => nil,
"Mercurial Distributed SCM (1.0.1+20080525)\n" => [1,0,1],
"Mercurial Distributed SCM (1916e629a29d)\n" => nil,
- "Mercurial SCM Distribuito (versione 0.9.5)\n" => [0,9,5]}
-
+ "Mercurial SCM Distribuito (versione 0.9.5)\n" => [0,9,5],
+ "(1.6)\n(1.7)\n(1.8)" => [1,6],
+ "(1.7.1)\r\n(1.8.1)\r\n(1.9.1)" => [1,7,1]}
+
to_test.each do |s, v|
test_hgversion_for(s, v)
end
to_test = { [0,9,5] => "0.9.5",
[1,0] => "1.0",
[] => "1.0",
- [1,0,1] => "1.0"}
-
+ [1,0,1] => "1.0",
+ [1,7] => "1.0",
+ [1,7,1] => "1.0"}
to_test.each do |v, template|
test_template_path_for(v, template)
end
end
rescue LoadError
- def test_fake; assert(false, "Requires mocha to run those tests") end
+ class MercurialMochaFake < ActiveSupport::TestCase
+ def test_fake; assert(false, "Requires mocha to run those tests") end
+ end
end
+