]> source.dussan.org Git - redmine.git/commitdiff
scm: cvs: run both of "inline" and "side by side" diff in functional test_diff test.
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 1 Jun 2011 06:10:37 +0000 (06:10 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 1 Jun 2011 06:10:37 +0000 (06:10 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5977 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/functional/repositories_cvs_controller_test.rb

index 715c4ea18b25c8daf01892b9ffb3beedfc960b84..e8eff306f4f2199d3b83539644078662d324f7c5 100644 (file)
@@ -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