transformations() public method

public transformations ( $options = [] )
Example #1
0
 function test12_transformations()
 {
     // should allow listing transformations
     $result = $this->api->transformations();
     $transformation = $this->find_by_attr($result["transformations"], "name", "c_scale,w_100");
     $this->assertNotEquals($transformation, NULL);
     $this->assertEquals($transformation["used"], TRUE);
 }