##// END OF EJS Templates
Fixed ActionController::TestUploadedFile#respond_to? for failing tests....
Jean-Philippe Lang -
r9473:d9304e062a2c
parent child
Show More
@@ -483,3 +483,11 end
483 # Simple module to "namespace" all of the API tests
483 # Simple module to "namespace" all of the API tests
484 module ApiTest
484 module ApiTest
485 end
485 end
486
487 module ActionController
488 class TestUploadedFile
489 def respond_to?(method_name)
490 @tempfile.respond_to?(method_name) || super
491 end
492 end
493 end
General Comments 0
You need to be logged in to leave comments. Login now