class Cucumber::Hooks::AfterStepHook
Attributes
Public Class Methods
Source
# File lib/cucumber/hooks.rb, line 89 def initialize(location) @location = location end
Public Instance Methods
Source
# File lib/cucumber/hooks.rb, line 105 def describe_to(visitor, *args) visitor.after_step_hook(self, *args) end
Source
# File lib/cucumber/hooks.rb, line 101 def match_locations?(queried_locations) queried_locations.any? { |other_location| other_location.match?(location) } end