From: Toshi MARUYAMA Date: Tue, 22 Mar 2011 16:56:07 +0000 (+0000) Subject: scm: filesystem: add test for no extension file mime type in functional test. X-Git-Tag: 1.2.0~635 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=cb297048df58141f7d0f21c996603c850ae51d2e;p=redmine.git scm: filesystem: add test for no extension file mime type in functional test. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5209 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/test/functional/repositories_filesystem_controller_test.rb b/test/functional/repositories_filesystem_controller_test.rb index afc4cdd1e..aa090d3ab 100644 --- a/test/functional/repositories_filesystem_controller_test.rb +++ b/test/functional/repositories_filesystem_controller_test.rb @@ -65,6 +65,12 @@ class RepositoriesFilesystemControllerTest < ActionController::TestCase :sibling => { :tag => 'td', :content => /TEST CAT/ } end + def test_entry_download_no_extension + get :entry, :id => PRJ_ID, :path => ['test'], :format => 'raw' + assert_response :success + assert_equal 'application/octet-stream', @response.content_type + end + def test_show_non_ascii_contents with_settings :repositories_encodings => 'UTF-8,EUC-JP' do get :entry, :id => PRJ_ID, :path => ['japanese', 'euc-jp.txt']