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

it_should_show_transformations_list_when_calling_transformations() public method

    public function it_should_show_transformations_list_when_calling_transformations()
    {
        // given
        $this->api->shouldReceive('transformations')->once()->with(array());
        // when
        $this->cloudinary_wrapper->transformations();
    }
CloudinaryWrapperTest