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

it_should_show_response_when_calling_resources_by_moderation() public method

    public function it_should_show_response_when_calling_resources_by_moderation()
    {
        $kind = 'manual';
        $status = 'pending';
        // given
        $this->api->shouldReceive('resources_by_moderation')->once()->with($kind, $status, array());
        // when
        $this->cloudinary_wrapper->resourcesByModeration($kind, $status);
    }
CloudinaryWrapperTest