Sha256: 5aa9168f99186839518834169084cd1069473bfc8e495cd668049f95f6232bdd

Contents?: true

Size: 1.64 KB

Versions: 53

Compression:

Stored size: 1.64 KB

Contents

require 'cucumber/ast'
require 'cucumber/step_mother'

module Cucumber
  module Ast
    module FeatureFactory
      class MyWorld
        def flunk
          raise "I flunked"
        end
      end
      
      def create_feature(dsl)
        dsl.Given /^a (.*) step with an inline arg:$/ do |what, table|
        end
        dsl.Given /^a (.*) step$/ do |what|
          flunk if what == 'failing'
        end
        dsl.World do
          MyWorld.new
        end

        table = Ast::Table.new([
          %w{1 22 333},
          %w{4444 55555 666666}
        ])
        py_string = Ast::PyString.new(21, 22, %{
           I like
          Cucumber sandwich
        }, 10)
        
        background = Ast::Background.new(Ast::Comment.new(""), 2, "Background:", "",
          [
            Step.new(3, "Given", "a passing step")
          ]
        )
        
        f = Ast::Feature.new(
          background,
          Ast::Comment.new("# My feature comment\n"),
          Ast::Tags.new(6, ['one', 'two']),
          "Pretty printing",
          [Ast::Scenario.new(
            background,
            Ast::Comment.new("    # My scenario comment  \n# On two lines \n"),
            Ast::Tags.new(8, ['three', 'four']),
            9,
            "Scenario:", "A Scenario",
            [
              Step.new(10, "Given", "a passing step with an inline arg:", table),
              Step.new(11, "Given", "a happy step with an inline arg:", py_string),
              Step.new(12, "Given", "a failing step")
            ]
          )]
        )
        f.file = 'features/pretty_printing.feature'
        f.features = Features.new
        f
      end
    end
  end
end

Version data entries

53 entries across 53 versions & 9 rubygems

Version Path
aslakhellesoy-cucumber-0.3.100 spec/cucumber/ast/feature_factory.rb
aslakhellesoy-cucumber-0.3.101.2 spec/cucumber/ast/feature_factory.rb
aslakhellesoy-cucumber-0.3.101 spec/cucumber/ast/feature_factory.rb
aslakhellesoy-cucumber-0.3.102.1 spec/cucumber/ast/feature_factory.rb
aslakhellesoy-cucumber-0.3.102.2 spec/cucumber/ast/feature_factory.rb
aslakhellesoy-cucumber-0.3.102 spec/cucumber/ast/feature_factory.rb
aslakhellesoy-cucumber-0.3.103 spec/cucumber/ast/feature_factory.rb
aslakhellesoy-cucumber-0.3.104 spec/cucumber/ast/feature_factory.rb
aslakhellesoy-cucumber-0.3.96 spec/cucumber/ast/feature_factory.rb
aslakhellesoy-cucumber-0.3.97 spec/cucumber/ast/feature_factory.rb
aslakhellesoy-cucumber-0.3.98 spec/cucumber/ast/feature_factory.rb
aslakhellesoy-cucumber-0.3.99 spec/cucumber/ast/feature_factory.rb
dwaite-cucumber-0.3.101 spec/cucumber/ast/feature_factory.rb
engineyard-cucumber-0.3.101 spec/cucumber/ast/feature_factory.rb
kosmas58-cucumber-0.3.100 spec/cucumber/ast/feature_factory.rb
kosmas58-cucumber-0.3.102 spec/cucumber/ast/feature_factory.rb
kosmas58-cucumber-0.3.103 spec/cucumber/ast/feature_factory.rb
kosmas58-cucumber-0.3.96 spec/cucumber/ast/feature_factory.rb
kosmas58-cucumber-0.3.97 spec/cucumber/ast/feature_factory.rb
kosmas58-cucumber-0.3.98 spec/cucumber/ast/feature_factory.rb