]> source.dussan.org Git - redmine.git/commitdiff
add csv separator check to the test to export time entry csv in Traditional Chinese...
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sun, 27 Nov 2011 12:09:11 +0000 (12:09 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sun, 27 Nov 2011 12:09:11 +0000 (12:09 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7949 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/functional/time_entry_reports_controller_test.rb

index 0fac8294afd9277a698c746cd8440a8a8cec2b1d..992ee7163d8da7a2fcd2b566d6a4e58cadc180e0 100644 (file)
@@ -6,6 +6,8 @@ class TimeEntryReportsControllerTest < ActionController::TestCase
            :issues, :time_entries, :users, :trackers, :enumerations,
            :issue_statuses, :custom_fields, :custom_values
 
+  include Redmine::I18n
+
   def setup
     Setting.default_language = "en"
   end
@@ -190,6 +192,15 @@ class TimeEntryReportsControllerTest < ActionController::TestCase
     # Total row
     assert_equal "#{str_big5} #{user.lastname},7.30,7.30", lines[1]
     assert_equal "#{s2},7.30,7.30", lines[2]
+
+    str_tw = "Traditional Chinese (\xe7\xb9\x81\xe9\xab\x94\xe4\xb8\xad\xe6\x96\x87)"
+    if str_tw.respond_to?(:force_encoding)
+      str_tw.force_encoding('UTF-8')
+    end
+    assert_equal str_tw, l(:general_lang_name)
+    assert_equal 'Big5', l(:general_csv_encoding)
+    assert_equal ',', l(:general_csv_separator)
+    assert_equal '.', l(:general_csv_decimal_separator)
   end
 
   def test_csv_cannot_convert_should_be_replaced_big_5