Skip to content

Instantly share code, notes, and snippets.

View ldiebold's full-sized avatar

Luke Diebold ldiebold

View GitHub Profile
<?php
...
public function it_can_store_a_zipped_game_file()
{
// Storage::fake('games');
$slug = "my-game";
$gameFile = UploadedFile::fake()->create('foo.zip', '800');
<?php
...
public function it_can_store_a_zipped_game_file()
{
Storage::fake('games');
$slug = "my-game";
$gameFile = UploadedFile::fake()->create('foo.zip', '800');