Sha256: a712dd4f1c06741c22bd1aa4cf5b5bd760bc45d3f664c90f69a72381d147810d
Contents?: true
Size: 873 Bytes
Versions: 24
Compression:
Stored size: 873 Bytes
Contents
module Cucumber # The base class for configuring settings for a Cucumber run. class Configuration def self.default new end def self.parse(argument) return new(argument) if argument.is_a?(Hash) argument end def initialize(user_options = {}) @options = default_options.merge(user_options) end def dry_run? @options[:dry_run] end def guess? @options[:guess] end def strict? @options[:strict] end def expand? @options[:expand] end def paths @options[:paths] end def autoload_code_paths @options[:autoload_code_paths] end def snippet_type @options[:snippet_type] end private def default_options { :autoload_code_paths => ['features/support', 'features/step_definitions'] } end end end
Version data entries
24 entries across 22 versions & 2 rubygems