Sha256: d6366094a5171346f002dbaaac99cdd10ce8df2a882b86b722afc267e96df538
Contents?: true
Size: 362 Bytes
Versions: 6
Compression:
Stored size: 362 Bytes
Contents
# frozen_string_literal: true require 'cucumber/core/filter' module Cucumber module Filters class ApplyAfterStepHooks < Core::Filter.new(:hooks) def test_case(test_case) test_steps = hooks.find_after_step_hooks(test_case).apply(test_case.test_steps) test_case.with_steps(test_steps).describe_to(receiver) end end end end
Version data entries
6 entries across 6 versions & 1 rubygems