require "#{File.dirname(__FILE__)}/../spec_helper" describe 'Gherkin3Adapter, Integration', :gherkin3 => true do let(:source_text) { "@tag1 @tag2 @tag3 #{@feature_keyword}: A feature with everything it could have Including a description and then some. #{@background_keyword}: Background description #{@step_keyword} a step | value1 | #{@step_keyword} another step @scenario_tag #{@scenario_keyword}: Scenario description #{@step_keyword} a step #{@step_keyword} another step \"\"\" some text \"\"\" @outline_tag #{@outline_keyword}: Outline description #{@step_keyword} a step | value2 | #{@step_keyword} another step \"\"\" some text \"\"\" @example_tag #{@example_keyword}: Example description | param | | value |" } let(:feature) { CukeModeler::Feature.new(source_text) } it "does not store parsing data for a feature's children" do model = feature expect(model.parsing_data[:tags]).to be_nil expect(model.parsing_data[:scenarioDefinitions]).to be_nil expect(model.parsing_data[:background]).to be_nil end it "does not store parsing data for a background's children" do model = feature.background expect(model.parsing_data[:steps]).to be_nil end it "does not store parsing data for a scenario's children" do model = feature.scenarios.first expect(model.parsing_data[:tags]).to be_nil expect(model.parsing_data[:steps]).to be_nil end it "does not store parsing data for an outline's children" do model = feature.outlines.first expect(model.parsing_data[:tags]).to be_nil expect(model.parsing_data[:steps]).to be_nil expect(model.parsing_data[:examples]).to be_nil end it "does not store parsing data for an example's children" do model = feature.outlines.first.examples.first expect(model.parsing_data[:tags]).to be_nil expect(model.parsing_data[:tableHeader]).to be_nil expect(model.parsing_data[:tableBody]).to be_nil end it "does not store parsing data for an example row's children" do model = feature.outlines.first.examples.first.rows.first expect(model.parsing_data[:cells]).to be_nil end it "does not store parsing data for a step's children, table" do model = feature.outlines.first.steps.first expect(model.parsing_data[:argument]).to be_nil end it "does not store parsing data for a step's children, doc string" do model = feature.outlines.first.steps.last expect(model.parsing_data[:argument]).to be_nil end it "does not store parsing data for a table's children" do model = feature.outlines.first.steps.first.block expect(model.parsing_data[:rows]).to be_nil end it "does not store parsing data for a table row's children" do model = feature.outlines.first.steps.first.block.rows.first expect(model.parsing_data[:cells]).to be_nil end end