jnicklas/turnip

View on GitHub
lib/turnip/node/background.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'turnip/node/scenario_definition'

module Turnip
  module Node
    #
    # @note Background metadata generated by Gherkin
    #
    #     {
    #       type: :Background,
    #       location: { line: 10, column: 3 },
    #       keyword: "Background",
    #       name: "Background Description",
    #       steps: []
    #     }
    #
    class Background < ScenarioDefinition
    end
  end
end