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

it_should_show_response_when_calling_resources_by_tag() public method

    public function it_should_show_response_when_calling_resources_by_tag()
    {
        $tag = 'tag';
        // given
        $this->api->shouldReceive('resources_by_tag')->once()->with($tag, array());
        // when
        $this->cloudinary_wrapper->resourcesByTag($tag);
    }
CloudinaryWrapperTest