Sha256: 7c67db80886e80db1ac53e1c43ba98fbc04df10e6e4b737be725e73253dec728
Contents?: true
Size: 484 Bytes
Versions: 1
Compression:
Stored size: 484 Bytes
Contents
# frozen_string_literal: true require 'cucumber/core/test/result' module Cucumber module Core module Test class UndefinedAction attr_reader :location def initialize(source_location) @location = source_location end def execute(*) undefined end def skip(*) undefined end private def undefined Result::Undefined.new end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cucumber-core-13.0.3 | lib/cucumber/core/test/actions/undefined_action.rb |