Sorts and filters scenarios based on a list of locations
# File lib/cucumber/core/test/filters/locations_filter.rb, line 15 def done sorted_test_cases.each do |test_case| test_case.describe_to receiver end receiver.done self end
# File lib/cucumber/core/test/filters/locations_filter.rb, line 10 def test_case(test_case) test_cases[test_case.location.file] << test_case self end
# File lib/cucumber/core/test/filters/locations_filter.rb, line 25 def sorted_test_cases filter_locations.map { |filter_location| test_cases[filter_location.file].select { |test_case| test_case.all_locations.any? { |location| filter_location.match?(location) } } }.flatten.uniq end
# File lib/cucumber/core/test/filters/locations_filter.rb, line 33 def test_cases @test_cases ||= Hash.new { |hash, key| hash[key] = [] } end