diff options
Diffstat (limited to 'test/functional')
-rw-r--r-- | test/functional/repositories_git_controller_test.rb | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/test/functional/repositories_git_controller_test.rb b/test/functional/repositories_git_controller_test.rb index 0ffd3134c..01f745de6 100644 --- a/test/functional/repositories_git_controller_test.rb +++ b/test/functional/repositories_git_controller_test.rb @@ -810,14 +810,6 @@ class RepositoriesGitControllerTest < Redmine::RepositoryControllerTest @project.reload assert_nil @project.repository end - - private - - def puts_pass_on_not_utf8 - puts "TODO: This test fails " + - "when Encoding.default_external is not UTF-8. " + - "Current value is '#{Encoding.default_external.to_s}'" - end else puts "Git test repository NOT FOUND. Skipping functional tests !!!" def test_fake; assert true end @@ -831,4 +823,10 @@ class RepositoriesGitControllerTest < Redmine::RepositoryControllerTest yield ActionController::Base.perform_caching = before end + + def puts_pass_on_not_utf8 + puts "TODO: This test fails " + + "when Encoding.default_external is not UTF-8. " + + "Current value is '#{Encoding.default_external.to_s}'" + end end |