コード例 #1
0
ファイル: AdminImageTest.php プロジェクト: despark/ignicms
 public function setUp()
 {
     parent::setUp();
     // Add config
     //config('admin.'.$this->identifier.'.image_fields');
     \Config::set('admin.test.image_fields', ['test' => ['thumbnails' => ['test_one' => ['width' => 100, 'height' => null, 'type' => 'resize'], 'test_two' => ['width' => null, 'height' => 200, 'type' => 'crop'], 'test_three' => ['width' => 300, 'height' => 100, 'type' => 'crop']]]]);
     \Config::set('ignicms.images.max_upload_size', 100);
     \Config::set('ignicms.images.retina_factor', 2);
 }
コード例 #2
0
ファイル: ClearTempTest.php プロジェクト: despark/ignicms
 /**
  * Setup tests.
  */
 public function setUp()
 {
     parent::setUp();
     $this->loadMigrationsFrom($this->migrationPath);
 }