JD\Cloudder\Test\CloudinaryWrapperTest::it_should_delete_a_transformation_when_calling_delete_transformation PHP Method

it_should_delete_a_transformation_when_calling_delete_transformation() public method

    public function it_should_delete_a_transformation_when_calling_delete_transformation()
    {
        $transformation = "c_fill,h_100,w_150";
        // given
        $this->api->shouldReceive('delete_transformation')->once()->with($transformation, array());
        // when
        $this->cloudinary_wrapper->deleteTransformation($transformation);
    }
CloudinaryWrapperTest