PATH:
home
/
lab2454c
/
healthvalidate.com
/
vendor
/
cloudinary-labs
/
cloudinary-laravel
/
tests
<?php use Orchestra\Testbench\TestCase; use Illuminate\Http\UploadedFile; use Illuminate\Database\Eloquent\Model; use CloudinaryLabs\CloudinaryLaravel\MediaAlly; /** * */ class DetachMediaTest extends TestCase { protected function setUp(): void { parent::setUp(); $this->loadMigrationsFrom(__DIR__ . '/database/migrations'); // and other test setup steps you need to perform } protected function getPackageProviders($app) { return ['CloudinaryLabs\CloudinaryLaravel\CloudinaryServiceProvider']; } public function test_can_detach_one_media_or_all() { $this->artisan('migrate')->run(); $model = MyModel::create([]); $model->attachMedia(UploadedFile::fake()->image('file.jpg')); $model->attachMedia(UploadedFile::fake()->image('file.jpg')); $this->assertCount(2, $model->fetchAllMedia()); $media1 = $model->fetchAllMedia()->first(); $model->detachMedia($media1); $this->assertCount(1, $model->fetchAllMedia()); $model->detachMedia(); $this->assertCount(0, $model->fetchAllMedia()); } } /** * */ class MyModel extends Model { protected $table = 'model'; use MediaAlly; }
[+]
..
[-] DetachMediaTest.php
[edit]
[+]
database