aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2012-03-12 16:09:22 -0300
committerSantiago Pastorino <santiago@wyeworks.com>2012-03-12 16:09:40 -0300
commit2ad34f46a1c4b8c59f37c2846ed0fcf3b4401e3a (patch)
tree209cf3247f6eb05b850ec363c42c1c688408152c /actionpack/test
parent0bb6fcb1d19f95f1ce83616a5cd3167763c51f09 (diff)
downloadrails-2ad34f46a1c4b8c59f37c2846ed0fcf3b4401e3a.tar.gz
rails-2ad34f46a1c4b8c59f37c2846ed0fcf3b4401e3a.tar.bz2
rails-2ad34f46a1c4b8c59f37c2846ed0fcf3b4401e3a.zip
Remove unused method
Diffstat (limited to 'actionpack/test')
-rw-r--r--actionpack/test/controller/send_file_test.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/actionpack/test/controller/send_file_test.rb b/actionpack/test/controller/send_file_test.rb
index 36884846be..3af17f495c 100644
--- a/actionpack/test/controller/send_file_test.rb
+++ b/actionpack/test/controller/send_file_test.rb
@@ -23,10 +23,6 @@ class SendFileController < ActionController::Base
def data
send_data(file_data, options)
end
-
- def multibyte_text_data
- send_data("Кирилица\n祝您好運.", options)
- end
end
class SendFileTest < ActionController::TestCase