scm: mercurial: run both of "inline" and "side by side" diff in functional test_diff_two_revs test.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5984 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-06-01 07:46:35 +00:00
parent bc8b1c0b22
commit 45cce005d2
1 changed files with 13 additions and 8 deletions

View File

@ -282,14 +282,19 @@ class RepositoriesMercurialControllerTest < ActionController::TestCase
@repository.reload
[2, '400bb8672109', '400', 400].each do |r1|
[4, 'def6d2f1254a'].each do |r2|
get :diff, :id => PRJ_ID, :rev => r1,
:rev_to => r2
assert_response :success
assert_template 'diff'
diff = assigns(:diff)
assert_not_nil diff
assert_tag :tag => 'h2', :content => /4:def6d2f1254a 2:400bb8672109/
['inline', 'sbs'].each do |dt|
get :diff,
:id => PRJ_ID,
:rev => r1,
:rev_to => r2,
:type => dt
assert_response :success
assert_template 'diff'
diff = assigns(:diff)
assert_not_nil diff
assert_tag :tag => 'h2',
:content => /4:def6d2f1254a 2:400bb8672109/
end
end
end
end