Sha256: 0f9a1683c1ff6f666211dcb3267e8f67dfab2a69823f06874c813b65314b0c84

Contents?: true

Size: 1.32 KB

Versions: 12

Compression:

Stored size: 1.32 KB

Contents

require File.dirname(__FILE__) + '/../../spec_helper'
require 'cucumber/ast/feature_factory'

module Cucumber
  module Ast
    describe Feature do
      include FeatureFactory

      it "should convert to sexp" do
        feature = create_feature(Object.new)
        feature.to_sexp.should == 
        [:feature, 
          "Pretty printing", 
          [:comment, "# My feature comment\n"], 
          [:tag, "one"], 
          [:tag, "two"], 
          [:background, 2, 'Background:',
            [:step, 3, "Given", "a passing step"]],
          [:scenario, 9, "Scenario:", 
            "A Scenario", 
            [:comment, "    # My scenario comment  \n# On two lines \n"], 
            [:tag, "three"], 
            [:tag, "four"],
            [:step_invocation, 3, "Given", "a passing step"], # From the background
            [:step_invocation, 10, "Given", "a passing step with an inline arg:",
              [:table, 
                [:row, 
                  [:cell, "1"], [:cell, "22"], [:cell, "333"]], 
                [:row, 
                  [:cell, "4444"], [:cell, "55555"], [:cell, "666666"]]]], 
            [:step_invocation, 11, "Given", "a happy step with an inline arg:", 
              [:py_string, "\n I like\nCucumber sandwich\n"]], 
            [:step_invocation, 12, "Given", "a failing step"]]]
      end
    end
  end
end

Version data entries

12 entries across 12 versions & 3 rubygems

Version Path
aslakhellesoy-cucumber-0.1.100.1 spec/cucumber/ast/feature_spec.rb
aslakhellesoy-cucumber-0.1.100.2 spec/cucumber/ast/feature_spec.rb
aslakhellesoy-cucumber-0.1.100.3 spec/cucumber/ast/feature_spec.rb
aslakhellesoy-cucumber-0.1.100.4 spec/cucumber/ast/feature_spec.rb
aslakhellesoy-cucumber-0.1.100.5 spec/cucumber/ast/feature_spec.rb
aslakhellesoy-cucumber-0.2.0.1 spec/cucumber/ast/feature_spec.rb
aslakhellesoy-cucumber-0.2.0.2 spec/cucumber/ast/feature_spec.rb
aslakhellesoy-cucumber-0.2.0 spec/cucumber/ast/feature_spec.rb
kosmas58-cucumber-0.1.100.5 spec/cucumber/ast/feature_spec.rb
kosmas58-cucumber-0.2.0.1 spec/cucumber/ast/feature_spec.rb
kosmas58-cucumber-0.2.0 spec/cucumber/ast/feature_spec.rb
cucumber-0.2.0 spec/cucumber/ast/feature_spec.rb