class Cucumber::Core::Test::TagFilter
Public Instance Methods
done()
click to toggle source
# File lib/cucumber/core/test/filters/tag_filter.rb, line 17 def done receiver.done self end
test_case(test_case)
click to toggle source
# File lib/cucumber/core/test/filters/tag_filter.rb, line 9 def test_case(test_case) test_cases << test_case if test_case.match_tags?(filter_expressions) test_case.describe_to(receiver) end self end
Private Instance Methods
test_cases()
click to toggle source
# File lib/cucumber/core/test/filters/tag_filter.rb, line 24 def test_cases @test_cases ||= TestCases.new end