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

it_should_create_a_transformation_when_calling_create_transformation() public method

    public function it_should_create_a_transformation_when_calling_create_transformation()
    {
        $name = "name";
        $definition = "c_fill,h_100,w_150";
        // given
        $this->api->shouldReceive('create_transformation')->once()->with($name, $definition, array());
        // when
        $this->cloudinary_wrapper->createTransformation($name, $definition);
    }
CloudinaryWrapperTest