diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2012-03-12 16:09:22 -0300 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2012-03-12 16:09:40 -0300 |
commit | 2ad34f46a1c4b8c59f37c2846ed0fcf3b4401e3a (patch) | |
tree | 209cf3247f6eb05b850ec363c42c1c688408152c /actionpack | |
parent | 0bb6fcb1d19f95f1ce83616a5cd3167763c51f09 (diff) | |
download | rails-2ad34f46a1c4b8c59f37c2846ed0fcf3b4401e3a.tar.gz rails-2ad34f46a1c4b8c59f37c2846ed0fcf3b4401e3a.tar.bz2 rails-2ad34f46a1c4b8c59f37c2846ed0fcf3b4401e3a.zip |
Remove unused method
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/test/controller/send_file_test.rb | 4 |
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 |