On Mon, Dec 12, 2011 at 4:46 AM, leigh <[email protected]> wrote:
> Hi Matteo,
>
> Wrap move_uploaded_file and is_uploaded_file inside the controller
>
> function moveUploadedFIle($filename, $destination) {
>  return move_uploaded_file($filename, $destination);
> }
>
> function moveUploadedFIle($filename, $destination) {
>  return is_uploaded_file($filename, $destination);
> }
>
> Then inside your testController override them.
>
> class TestPostsController extends postsController {
>
>  protected function isUploadedFile($filename) {
>   return true;
>  }
>  protected function moveUploadedFile($filename, $destination) {
>   return true;
>  }
>

You are assuming that my controllers tests extend controllers and not,
as usual, CakeControllerTest. However, do I really need to do
something similar to test image uploading? Is this supported or not?


Matteo

-- 
http://www.matteolandi.net/

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


To unsubscribe from this group, send email to
[email protected] For more options, visit this group at 
http://groups.google.com/group/cake-php

Reply via email to