Sha256: 687dc6f5768dd28ebf6b72a67f86c63841fb5b46d166ab42726005bb557bd025

Contents?: true

Size: 1.28 KB

Versions: 24

Compression:

Stored size: 1.28 KB

Contents

# -*- coding: utf-8 -*-
module FeatureFactory
  def create_feature(name = generate_feature_name)
    gherkin = <<-GHERKIN
Feature: #{name}
#{yield}
    GHERKIN
    write_file filename(name), gherkin
  end

  def create_feature_ja(name = generate_feature_name)
    gherkin = <<-GHERKIN
# language: ja
機能: #{name}
#{yield}
    GHERKIN
    write_file filename(name), gherkin
  end

  def create_scenario(name = generate_scenario_name)
    <<-GHERKIN
  Scenario: #{name}
  #{yield}
    GHERKIN
  end

  def create_scenario_ja(name = generate_scenario_name)
    <<-GHERKIN
  シナリオ: #{name}
  #{yield}
    GHERKIN
  end

  def create_step_definition
    write_file generate_step_definition_filename, yield
  end

  def generate_feature_name
    "Test Feature #{next_increment(:feature)}"
  end

  def generate_scenario_name
    "Test Scenario #{next_increment(:scenario)}"
  end

  def next_increment(label)
    @increments ||= {}
    @increments[label] ||= 0
    @increments[label] += 1
  end

  def generate_step_definition_filename
    "features/step_definitions/steps#{next_increment(:step_defs)}.rb"
  end

  def filename(name)
    "features/#{name.downcase.gsub(' ', '_')}.feature"
  end

  def features
    in_current_dir do
      Dir['features/*.feature']
    end
  end
end

World(FeatureFactory)

Version data entries

24 entries across 24 versions & 2 rubygems

Version Path
cucumber-2.99.0 features/lib/support/feature_factory.rb
mobiusloop-0.1.5 features/lib/support/feature_factory.rb
cucumber-2.4.0 features/lib/support/feature_factory.rb
mobiusloop-0.1.3 features/lib/support/feature_factory.rb
mobiusloop-0.1.2 features/lib/support/feature_factory.rb
cucumber-2.3.3 features/lib/support/feature_factory.rb
cucumber-2.3.2 features/lib/support/feature_factory.rb
cucumber-2.3.1 features/lib/support/feature_factory.rb
cucumber-2.3.0 features/lib/support/feature_factory.rb
cucumber-2.2.0 features/lib/support/feature_factory.rb
cucumber-2.1.0 features/lib/support/feature_factory.rb
cucumber-2.0.2 features/lib/support/feature_factory.rb
cucumber-2.0.1 features/lib/support/feature_factory.rb
cucumber-2.0.0 features/lib/support/feature_factory.rb
cucumber-2.0.0.rc.5 features/lib/support/feature_factory.rb
cucumber-2.0.0.rc.4 features/lib/support/feature_factory.rb
cucumber-2.0.0.rc.3 features/lib/support/feature_factory.rb
cucumber-2.0.0.rc.2 features/lib/support/feature_factory.rb
cucumber-2.0.0.rc.1 features/lib/support/feature_factory.rb
cucumber-2.0.0.beta.5 features/lib/support/feature_factory.rb