Upgrade to KH 3.3.0

This commit is contained in:
Deon George
2012-11-22 14:25:06 +11:00
parent e5e67a59bb
commit 5bd1841571
1455 changed files with 114353 additions and 9466 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