Named, enabled and updated test

parent e62acfb6
...@@ -103,10 +103,11 @@ class EloquentFileRepositoryTest extends MediaTestCase ...@@ -103,10 +103,11 @@ class EloquentFileRepositoryTest extends MediaTestCase
$this->assertEquals('my-file_2.jpg', $this->file->find(3)->filename); $this->assertEquals('my-file_2.jpg', $this->file->find(3)->filename);
} }
public function it_weird_edge_case() /** @test */
public function it_can_increment_file_name_version_to_a_number_higher_than_any_existing()
{ {
$file = $this->file->createFromFile(\Illuminate\Http\UploadedFile::fake()->image('my-file.jpg')); $file = $this->file->createFromFile(\Illuminate\Http\UploadedFile::fake()->image('my-file.jpg'));
$this->file->createFromFile(\Illuminate\Http\UploadedFile::fake()->image('my-file_1.jpg')); $this->file->createFromFile(\Illuminate\Http\UploadedFile::fake()->image('my-file.jpg'));
$this->file->destroy($file); $this->file->destroy($file);
sleep(1); sleep(1);
$this->file->createFromFile(\Illuminate\Http\UploadedFile::fake()->image('my-file.jpg')); $this->file->createFromFile(\Illuminate\Http\UploadedFile::fake()->image('my-file.jpg'));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment