瀏覽代碼

Fixed ActionController::TestUploadedFile#respond_to? for failing tests.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/1.4-stable@9656 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/1.4.2
Jean-Philippe Lang 12 年之前
父節點
當前提交
d9304e062a
共有 1 個檔案被更改,包括 8 行新增0 行删除
  1. 8
    0
      test/test_helper.rb

+ 8
- 0
test/test_helper.rb 查看文件

@@ -483,3 +483,11 @@ end
# Simple module to "namespace" all of the API tests
module ApiTest
end

module ActionController
class TestUploadedFile
def respond_to?(method_name)
@tempfile.respond_to?(method_name) || super
end
end
end

Loading…
取消
儲存