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

it_should_show_root_folders_list_when_calling_root_folders() public method

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