本文整理汇总了Python中test_utils.RequestFactory.COOKIES方法的典型用法代码示例。如果您正苦于以下问题:Python RequestFactory.COOKIES方法的具体用法?Python RequestFactory.COOKIES怎么用?Python RequestFactory.COOKIES使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类test_utils.RequestFactory
的用法示例。
在下文中一共展示了RequestFactory.COOKIES方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_only_code
# 需要导入模块: from test_utils import RequestFactory [as 别名]
# 或者: from test_utils.RequestFactory import COOKIES [as 别名]
def test_only_code(self):
"""GeoIP code is included when the country name is missing."""
req = RequestFactory()
req.COOKIES = {
'geoip_country_code': 'US',
}
val = geoip_cache_detector(req)
eq_(val['include_geoip'], True)
示例2: test_when_both
# 需要导入模块: from test_utils import RequestFactory [as 别名]
# 或者: from test_utils.RequestFactory import COOKIES [as 别名]
def test_when_both(self):
"""GeoIP code is not included when both name and code already exist."""
req = RequestFactory()
req.COOKIES = {
'geoip_country_name': 'United States',
'geoip_country_code': 'US',
}
val = geoip_cache_detector(req)
eq_(val['include_geoip'], False)