mock the facade:
Auth::shouldReceive(‘user‘)->andReturn($user = m::mock(‘StdClass‘)); $user->shouldReceive(‘posts‘)->once()->andReturn(array(‘posts‘));
mock the facade
原文:http://www.cnblogs.com/fenle/p/6252614.html