This file contains hidden or 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
| <?php | |
| ... | |
| public function it_can_store_a_zipped_game_file() | |
| { | |
| // Storage::fake('games'); | |
| $slug = "my-game"; | |
| $gameFile = UploadedFile::fake()->create('foo.zip', '800'); |
This file contains hidden or 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
| <?php | |
| ... | |
| public function it_can_store_a_zipped_game_file() | |
| { | |
| Storage::fake('games'); | |
| $slug = "my-game"; | |
| $gameFile = UploadedFile::fake()->create('foo.zip', '800'); |
NewerOlder