function ImageToolkitUnitTest::testSave

Test the image_save() function.

Archivo

drupal-7.x/modules/simpletest/tests/image.test, line 111
Tests for core image handling API.

Class

ImageToolkitUnitTest
Test that the functions in image.inc correctly pass data to the toolkit.

Código

function testSave() {
  $this->assertFalse(image_save($this->image), 'Function returned the expected value.');
  $this->assertToolkitOperationsCalled(array('save'));
}