enkessler/cuke_modeler

View on GitHub
lib/cuke_modeler/adapters/gherkin_14_adapter.rb

Summary

Maintainability
A
0 mins
Test Coverage
require_relative 'gherkin_9_adapter'


module CukeModeler

  # @api private
  #
  # An adapter that can convert the output of version 14.x of the *cucumber-gherkin* gem into input that is consumable
  # by this gem. Internal helper class.
  class Gherkin14Adapter < Gherkin9Adapter; end

  private_constant :Gherkin14Adapter
end