Sha256: 813cd03e12b31a0317629468dd0124b6c16cca092e4d62199925f1eab9817b50
Contents?: true
Size: 363 Bytes
Versions: 41
Compression:
Stored size: 363 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
41 entries across 41 versions & 4 rubygems