Updated to KH 3.3 and improved

This commit is contained in:
Deon George
2013-04-13 16:17:56 +10:00
parent 6f50463ec7
commit 6f7913d363
1551 changed files with 96188 additions and 29813 deletions

View File

@@ -0,0 +1,36 @@
<?php defined('SYSPATH') OR die('Kohana bootstrap needs to be included before tests run');
/**
* @package Kohana/Image
* @group kohana
* @group kohana.image
* @category Test
* @author Kohana Team
* @copyright (c) 2009-2012 Kohana Team
* @license http://http://kohanaframework.org/license
*/
class Kohana_ImageTest extends PHPUnit_Framework_TestCase {
protected function setUp()
{
if ( ! extension_loaded('gd'))
{
$this->markTestSkipped('The GD extension is not available.');
}
}
/**
* Tests the Image::save() method for files that don't have extensions
*
* @return void
*/
public function test_save_without_extension()
{
$image = Image::factory(MODPATH.'image/tests/test_data/test_image');
$this->assertTrue($image->save(Kohana::$cache_dir.'/test_image'));
unlink(Kohana::$cache_dir.'/test_image');
}
} // End Kohana_ImageTest

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB