当前位置: 首页>>代码示例>>Python>>正文


Python YouTubeStorage.list方法代码示例

本文整理汇总了Python中YouTubeStorage.YouTubeStorage.list方法的典型用法代码示例。如果您正苦于以下问题:Python YouTubeStorage.list方法的具体用法?Python YouTubeStorage.list怎么用?Python YouTubeStorage.list使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在YouTubeStorage.YouTubeStorage的用法示例。


在下文中一共展示了YouTubeStorage.list方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: YouTubeStorage

# 需要导入模块: from YouTubeStorage import YouTubeStorage [as 别名]
# 或者: from YouTubeStorage.YouTubeStorage import list [as 别名]
    def test_list_should_call_getStoredSearches_if_store_is_defined_in_params_but_not_artist_or_contact_option(self):
        storage = YouTubeStorage()
        storage.getStoredSearches = Mock()
        storage.getStoredSearches.return_value = ("", 200)

        storage.list({"store": "somestore"})

        storage.getStoredSearches.assert_called_with({"store": "somestore"})
开发者ID:aerickson,项目名称:youtube-xbmc-plugin,代码行数:10,代码来源:TestYouTubeStorage.py

示例2: test_list_should_call_getUserOptionFolder_if_store_contact_option_is_in_params

# 需要导入模块: from YouTubeStorage import YouTubeStorage [as 别名]
# 或者: from YouTubeStorage.YouTubeStorage import list [as 别名]
    def test_list_should_call_getUserOptionFolder_if_store_contact_option_is_in_params(self):
        storage = YouTubeStorage()
        storage.getUserOptionFolder = Mock()
        storage.getUserOptionFolder.return_value = ("", 200)

        storage.list({"store": "contact_options"})

        storage.getUserOptionFolder.assert_called_with({"store": "contact_options"})
开发者ID:aerickson,项目名称:youtube-xbmc-plugin,代码行数:10,代码来源:TestYouTubeStorage.py

示例3: test_list_should_call_getStoredArtists_if_store_artist_is_in_params

# 需要导入模块: from YouTubeStorage import YouTubeStorage [as 别名]
# 或者: from YouTubeStorage.YouTubeStorage import list [as 别名]
    def test_list_should_call_getStoredArtists_if_store_artist_is_in_params(self):
        storage = YouTubeStorage()
        storage.getStoredArtists = Mock()
        storage.getStoredArtists.return_value = ("", 200)

        storage.list({"store": "artists"})

        storage.getStoredArtists.assert_called_with({"store": "artists"})
开发者ID:aerickson,项目名称:youtube-xbmc-plugin,代码行数:10,代码来源:TestYouTubeStorage.py


注:本文中的YouTubeStorage.YouTubeStorage.list方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。