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

it_should_show_response_when_calling_resources_by_ids() public method

    public function it_should_show_response_when_calling_resources_by_ids()
    {
        $pids = ['pid1', 'pid2'];
        // given
        $this->api->shouldReceive('resources_by_ids')->once()->with($pids);
        // when
        $this->cloudinary_wrapper->resourcesByIds($pids);
    }
CloudinaryWrapperTest