本文整理汇总了Python中behave.tag_expression.TagExpression类的典型用法代码示例。如果您正苦于以下问题:Python TagExpression类的具体用法?Python TagExpression怎么用?Python TagExpression使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了TagExpression类的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: TestTagExpressionNoTags
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([])
示例2: TestTagExpressionFooOrBarAndNotZap
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'])
示例3: TestTagExpressionNotFoo
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'])
示例4: TestTagExpressionNotFooWithTilde
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
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
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
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: setUp
def setUp(self):
self.e = TagExpression(['foo:3,-bar', 'zap:5'])
示例9: TestTagExpressionFooAndBar
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'])
示例10: TestTagExpressionFooOrBarAndNotZap
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'])
示例11: normalize_tags
def normalize_tags(tags):
# -- STRIP: Leading '@' from tags.
return [TagExpression.normalize_tag(tag) for tag in tags]