本文整理汇总了Python中behave.tag_expression.TagExpression.check方法的典型用法代码示例。如果您正苦于以下问题:Python TagExpression.check方法的具体用法?Python TagExpression.check怎么用?Python TagExpression.check使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类behave.tag_expression.TagExpression
的用法示例。
在下文中一共展示了TagExpression.check方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: TestTagExpressionFooOrBarAndNotZap
# 需要导入模块: from behave.tag_expression import TagExpression [as 别名]
# 或者: from behave.tag_expression.TagExpression import check [as 别名]
class TestTagExpressionFooOrBarAndNotZap(object):
def setUp(self):
self.e = TagExpression(['foo,bar', '-zap'])
def test_should_match_foo(self):
assert self.e.check(['foo'])
def test_should_not_match_foo_zap(self):
assert not self.e.check(['foo', 'zap'])
示例2: TestTagExpressionNotFoo
# 需要导入模块: from behave.tag_expression import TagExpression [as 别名]
# 或者: from behave.tag_expression.TagExpression import check [as 别名]
class TestTagExpressionNotFoo(object):
def setUp(self):
self.e = TagExpression(['-foo'])
def test_should_match_bar(self):
assert self.e.check(['bar'])
def test_should_not_match_foo(self):
assert not self.e.check(['foo'])
示例3: TestTagExpressionNoTags
# 需要导入模块: from behave.tag_expression import TagExpression [as 别名]
# 或者: from behave.tag_expression.TagExpression import check [as 别名]
class TestTagExpressionNoTags(object):
def setUp(self):
self.e = TagExpression([])
def test_should_match_foo(self):
assert self.e.check(['foo'])
def test_should_match_empty_tags(self):
assert self.e.check([])
示例4: TestTagExpressionNotFooWithTilde
# 需要导入模块: from behave.tag_expression import TagExpression [as 别名]
# 或者: from behave.tag_expression.TagExpression import check [as 别名]
class TestTagExpressionNotFooWithTilde(unittest.TestCase):
def setUp(self):
self.e = TagExpression(['~foo'])
def test_should_match_bar(self):
assert self.e.check(['bar'])
def test_should_not_match_foo(self):
assert not self.e.check(['foo'])
示例5: TestTagExpressionFoo
# 需要导入模块: from behave.tag_expression import TagExpression [as 别名]
# 或者: from behave.tag_expression.TagExpression import check [as 别名]
class TestTagExpressionFoo(unittest.TestCase):
def setUp(self):
self.e = TagExpression(['foo'])
def test_should_not_match_no_tags(self):
assert not self.e.check([])
def test_should_match_foo(self):
assert self.e.check(['foo'])
def test_should_not_match_bar(self):
assert not self.e.check(['bar'])
示例6: TestTagExpressionFooOrBarAndNotZapWithTilde
# 需要导入模块: from behave.tag_expression import TagExpression [as 别名]
# 或者: from behave.tag_expression.TagExpression import check [as 别名]
class TestTagExpressionFooOrBarAndNotZapWithTilde(unittest.TestCase):
def setUp(self):
self.e = TagExpression(['foo,bar', '~zap'])
def test_should_match_foo(self):
assert self.e.check(['foo'])
def test_should_not_match_zap(self):
assert not self.e.check(['zap'])
def test_should_not_match_foo_zap(self):
assert not self.e.check(['foo', 'zap'])
示例7: TestTagExpressionFoo3OrNotBar4AndZap5
# 需要导入模块: from behave.tag_expression import TagExpression [as 别名]
# 或者: from behave.tag_expression.TagExpression import check [as 别名]
class TestTagExpressionFoo3OrNotBar4AndZap5(object):
def setUp(self):
self.e = TagExpression(['foo:3,-bar', 'zap:5'])
def test_should_count_tags_for_positive_tags(self):
tools.eq_(self.e.limits, {'foo': 3, 'zap': 5})
def test_should_match_foo_zap(self):
assert self.e.check(['foo', 'zap'])
示例8: TestTagExpressionFooAndBar
# 需要导入模块: from behave.tag_expression import TagExpression [as 别名]
# 或者: from behave.tag_expression.TagExpression import check [as 别名]
class TestTagExpressionFooAndBar(unittest.TestCase):
# -- LOGIC: @foo and @bar
def setUp(self):
self.e = TagExpression(['foo', 'bar'])
def test_should_not_match_no_tags(self):
assert not self.e.check([])
def test_should_not_match_foo(self):
assert not self.e.check(['foo'])
def test_should_not_match_bar(self):
assert not self.e.check(['bar'])
def test_should_not_match_other(self):
assert not self.e.check(['other'])
def test_should_match_foo_bar(self):
assert self.e.check(['foo', 'bar'])
assert self.e.check(['bar', 'foo'])
def test_should_not_match_foo_other(self):
assert not self.e.check(['foo', 'other'])
assert not self.e.check(['other', 'foo'])
def test_should_not_match_bar_other(self):
assert not self.e.check(['bar', 'other'])
assert not self.e.check(['other', 'bar'])
def test_should_not_match_zap_other(self):
assert not self.e.check(['zap', 'other'])
assert not self.e.check(['other', 'zap'])
def test_should_match_foo_bar_other(self):
assert self.e.check(['foo', 'bar', 'other'])
assert self.e.check(['bar', 'other', 'foo'])
assert self.e.check(['other', 'bar', 'foo'])
def test_should_not_match_foo_zap_other(self):
assert not self.e.check(['foo', 'zap', 'other'])
assert not self.e.check(['other', 'zap', 'foo'])
def test_should_not_match_bar_zap_other(self):
assert not self.e.check(['bar', 'zap', 'other'])
assert not self.e.check(['other', 'bar', 'zap'])
def test_should_not_match_zap_baz_other(self):
assert not self.e.check(['zap', 'baz', 'other'])
assert not self.e.check(['baz', 'other', 'baz'])
assert not self.e.check(['other', 'baz', 'zap'])
示例9: TestTagExpressionFooOrBarAndNotZap
# 需要导入模块: from behave.tag_expression import TagExpression [as 别名]
# 或者: from behave.tag_expression.TagExpression import check [as 别名]
class TestTagExpressionFooOrBarAndNotZap(unittest.TestCase):
def setUp(self):
self.e = TagExpression(['foo,bar', '-zap'])
def test_should_match_foo(self):
assert self.e.check(['foo'])
def test_should_not_match_foo_zap(self):
assert not self.e.check(['foo', 'zap'])
def test_should_not_match_tags(self):
assert not self.e.check([])
def test_should_match_foo(self):
assert self.e.check(['foo'])
def test_should_match_bar(self):
assert self.e.check(['bar'])
def test_should_not_match_other(self):
assert not self.e.check(['other'])
def test_should_match_foo_bar(self):
assert self.e.check(['foo', 'bar'])
assert self.e.check(['bar', 'foo'])
def test_should_match_foo_other(self):
assert self.e.check(['foo', 'other'])
assert self.e.check(['other', 'foo'])
def test_should_match_bar_other(self):
assert self.e.check(['bar', 'other'])
assert self.e.check(['other', 'bar'])
def test_should_not_match_zap_other(self):
assert not self.e.check(['zap', 'other'])
assert not self.e.check(['other', 'zap'])
def test_should_match_foo_bar_other(self):
assert self.e.check(['foo', 'bar', 'other'])
assert self.e.check(['bar', 'other', 'foo'])
assert self.e.check(['other', 'bar', 'foo'])
def test_should_not_match_foo_bar_zap(self):
assert not self.e.check(['foo', 'bar', 'zap'])
assert not self.e.check(['bar', 'zap', 'foo'])
assert not self.e.check(['zap', 'bar', 'foo'])
def test_should_not_match_foo_zap_other(self):
assert not self.e.check(['foo', 'zap', 'other'])
assert not self.e.check(['other', 'zap', 'foo'])
def test_should_not_match_bar_zap_other(self):
assert not self.e.check(['bar', 'zap', 'other'])
assert not self.e.check(['other', 'bar', 'zap'])
def test_should_not_match_zap_baz_other(self):
assert not self.e.check(['zap', 'baz', 'other'])
assert not self.e.check(['baz', 'other', 'baz'])
assert not self.e.check(['other', 'baz', 'zap'])