Skip to content

Instantly share code, notes, and snippets.

@xbot
Last active January 18, 2022 00:14
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xbot/d0ace9c1ebdb161adf229c9a9c62f2bf to your computer and use it in GitHub Desktop.
Save xbot/d0ace9c1ebdb161adf229c9a9c62f2bf to your computer and use it in GitHub Desktop.
How to mock laravel DB facade。
DB::shouldReceive('table')->with('users as u')->once()->andReturnSelf();
DB::shouldReceive('where')->with('u.id', $user->id)->once()->andReturnSelf();
DB::shouldReceive('value')->with('u.favorites_shortages')->once()->andReturn($fakeOldShortages);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment