mirror of
https://github.com/redmine/redmine.git
synced 2025-11-15 17:56:03 +01:00
shorten long line of test/unit/lib/redmine/scm/adapters/cvs_adapter_test.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@20456 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -30,9 +30,13 @@ class CvsAdapterTest < ActiveSupport::TestCase
|
||||
end
|
||||
|
||||
def test_scm_version
|
||||
to_test = { "\nConcurrent Versions System (CVS) 1.12.13 (client/server)\n" => [1,12,13],
|
||||
"\r\n1.12.12\r\n1.12.11" => [1,12,12],
|
||||
"1.12.11\r\n1.12.10\r\n" => [1,12,11]}
|
||||
to_test =
|
||||
{
|
||||
"\nConcurrent Versions System (CVS) 1.12.13 (client/server)\n" =>
|
||||
[1, 12, 13],
|
||||
"\r\n1.12.12\r\n1.12.11" => [1, 12, 12],
|
||||
"1.12.11\r\n1.12.10\r\n" => [1, 12, 11]
|
||||
}
|
||||
to_test.each do |s, v|
|
||||
test_scm_version_for(s, v)
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user