Commit 071fc2c8 authored by Toshi MARUYAMA's avatar Toshi MARUYAMA Committed by Eric Davis

scm: mercurial: add test of binary file should be force download in functional test (#6256).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5202 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent 9250fa05
......@@ -219,6 +219,13 @@ class RepositoriesMercurialControllerTest < ActionController::TestCase
assert @response.body.include?('WITHOUT ANY WARRANTY')
end
def test_entry_binary_force_download
get :entry, :id => PRJ_ID, :rev => 1, :path => ['images', 'edit.png']
assert_response :success
# TODO: 'image/png'
assert_equal 'application/octet-stream', @response.content_type
end
def test_directory_entry
get :entry, :id => PRJ_ID, :path => ['sources']
assert_response :success
......@@ -226,7 +233,7 @@ class RepositoriesMercurialControllerTest < ActionController::TestCase
assert_not_nil assigns(:entry)
assert_equal 'sources', assigns(:entry).name
end
def test_diff
@repository.fetch_changesets
@repository.reload
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment