]> source.dussan.org Git - redmine.git/commitdiff
attachment: update a functional test to switch "side by side" and "inline" for ISO...
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sun, 20 Nov 2011 12:17:08 +0000 (12:17 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sun, 20 Nov 2011 12:17:08 +0000 (12:17 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7873 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/functional/attachments_controller_test.rb

index cdab931be83796e08d0468e3096616cee5f360d6..bc34ac2182e244aec99100116dd3020c23fad169 100644 (file)
@@ -72,18 +72,19 @@ class AttachmentsControllerTest < ActionController::TestCase
 
   def test_show_diff_latin_1
     with_settings :repositories_encodings => 'UTF-8,ISO-8859-1' do
-      # 060719210727_changeset_iso8859-1.diff
-      get :show, :id => 5
-      assert_response :success
-      assert_template 'diff'
-      assert_equal 'text/html', @response.content_type
-
-      assert_tag 'th',
-        :attributes => {:class => "filename"},
-        :content => /issues_controller.rb\t\(révision 1484\)/
-      assert_tag 'td',
-        :attributes => {:class => /line-code/},
-        :content => /Demande créée avec succès/
+      ['inline', 'sbs'].each do |dt|
+        # 060719210727_changeset_iso8859-1.diff
+        get :show, :id => 5
+        assert_response :success
+        assert_template 'diff'
+        assert_equal 'text/html', @response.content_type
+        assert_tag 'th',
+          :attributes => {:class => "filename"},
+          :content => /issues_controller.rb\t\(révision 1484\)/
+        assert_tag 'td',
+          :attributes => {:class => /line-code/},
+          :content => /Demande créée avec succès/
+      end
     end
   end