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

it_should_show_one_transformation_when_calling_transformation() public method

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