scm: filesystem: add test for UTF-16 file displaying (#6256).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5206 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
53b41950d1
commit
fb0d24d37e
|
@ -76,6 +76,17 @@ class RepositoriesFilesystemControllerTest < ActionController::TestCase
|
||||||
:sibling => { :tag => 'td', :content => /japanese/ }
|
:sibling => { :tag => 'td', :content => /japanese/ }
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_show_utf16
|
||||||
|
with_settings :repositories_encodings => 'UTF-16' do
|
||||||
|
get :entry, :id => PRJ_ID, :path => ['japanese', 'utf-16.txt']
|
||||||
|
assert_response :success
|
||||||
|
assert_tag :tag => 'th',
|
||||||
|
:content => '2',
|
||||||
|
:attributes => { :class => 'line-num' },
|
||||||
|
:sibling => { :tag => 'td', :content => /japanese/ }
|
||||||
|
end
|
||||||
|
end
|
||||||
else
|
else
|
||||||
puts "Filesystem test repository NOT FOUND. Skipping functional tests !!!"
|
puts "Filesystem test repository NOT FOUND. Skipping functional tests !!!"
|
||||||
def test_fake; assert true end
|
def test_fake; assert true end
|
||||||
|
|
Loading…
Reference in New Issue