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:
Toshi MARUYAMA
2020-11-21 13:51:42 +00:00
parent 6aa4038d9d
commit c7bfcd77dc

View File

@@ -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