本文整理汇总了Python中rules.Rules.get_media_selectors方法的典型用法代码示例。如果您正苦于以下问题:Python Rules.get_media_selectors方法的具体用法?Python Rules.get_media_selectors怎么用?Python Rules.get_media_selectors使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类rules.Rules
的用法示例。
在下文中一共展示了Rules.get_media_selectors方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: TestMedia
# 需要导入模块: from rules import Rules [as 别名]
# 或者: from rules.Rules import get_media_selectors [as 别名]
class TestMedia(unittest.TestCase):
def setUp(self):
self.css = '''@media screen {
@font-face {
font-family: 'Cantarell';
font-style: normal;
font-weight: normal;
src: local('Cantarell'), \
url('http://themes.googleusercontent.com/font?kit=tGao7ZPoloMxQHxq-2oxNA') \
format('truetype');
}
}'''
self.parsed = Rules(code=self.css)
parse(less=self.css, parent=self.parsed)
def test_is_the_same(self):
self.assertEqual(str(self.parsed), self.css)
def test_media_selector(self):
self.assertEqual(self.parsed.get_selectors(media=['screen']),
{'@font-face': {'src': '''local('Cantarell'), \
url('http://themes.googleusercontent.com/font?kit=tGao7ZPoloMxQHxq-2oxNA') \
format('truetype')''',
'font-weight': 'normal',
'font-style': 'normal',
'font-family': "'Cantarell'"}})
def test_media_selectors(self):
self.assertEqual(self.parsed.get_media_selectors(),
(None, ['screen']))
def test_none_selector(self):
self.assertEqual(self.parsed.get_selectors(), {})