Created
April 22, 2015 05:29
-
-
Save astrsk-hori/64b7ddcb367c0fa89887 to your computer and use it in GitHub Desktop.
laravelのfacadeのパーシャルモックのメモ ref: http://qiita.com/astrsk_hori/items/efe290554b497c565470
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// File::delete()メソッド: | |
File::shouldReceive('delete')->andReturn(true); | |
File::makePartial(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File::delete(); | |
// true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment