diff options
-rw-r--r-- | test/functional/repositories_cvs_controller_test.rb | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/test/functional/repositories_cvs_controller_test.rb b/test/functional/repositories_cvs_controller_test.rb index 715c4ea18..e8eff306f 100644 --- a/test/functional/repositories_cvs_controller_test.rb +++ b/test/functional/repositories_cvs_controller_test.rb @@ -143,13 +143,15 @@ class RepositoriesCvsControllerTest < ActionController::TestCase def test_diff @repository.fetch_changesets @repository.reload - get :diff, :id => PRJ_ID, :rev => 3, :type => 'inline' - assert_response :success - assert_template 'diff' - assert_tag :tag => 'td', :attributes => { :class => 'line-code diff_out' }, - :content => /before_filter :require_login/ - assert_tag :tag => 'td', :attributes => { :class => 'line-code diff_in' }, - :content => /with one change/ + ['inline', 'sbs'].each do |dt| + get :diff, :id => PRJ_ID, :rev => 3, :type => dt + assert_response :success + assert_template 'diff' + assert_tag :tag => 'td', :attributes => { :class => 'line-code diff_out' }, + :content => /before_filter :require_login/ + assert_tag :tag => 'td', :attributes => { :class => 'line-code diff_in' }, + :content => /with one change/ + end end def test_diff_new_files |