require 'spec_helper' SimpleCov.command_name('TableRow') unless RUBY_VERSION.to_s < '1.9.0' describe 'TableRow, Unit' do clazz = CukeModeler::TableRow it_should_behave_like 'a nested element', clazz it_should_behave_like 'a bare bones element', clazz it_should_behave_like 'a prepopulated element', clazz it_should_behave_like 'a sourced element', clazz it_should_behave_like 'a raw element', clazz it 'can be parsed from stand alone text' do source = '| a | row |' expect { @element = clazz.new(source) }.to_not raise_error # Sanity check in case instantiation failed in a non-explosive manner @element.cells.should == ['a', 'row'] end it 'provides a descriptive filename when being parsed from stand alone text' do source = 'bad table row text' expect { clazz.new(source) }.to raise_error(/'cuke_modeler_stand_alone_table_row\.feature'/) end it 'stores the original data generated by the parsing adapter', :gherkin3 => true do table_row = clazz.new("| a | row |") raw_data = table_row.raw_element expect(raw_data.keys).to match_array([:type, :location, :cells]) expect(raw_data[:type]).to eq('TableRow') # Open bug in the gherkin gem. Should be a symbol like the others. # expect(raw_data[:type]).to eq(:TableRow) end it 'stores the original data generated by the parsing adapter', :gherkin2 => true do table_row = clazz.new("| a | row |") raw_data = table_row.raw_element expect(raw_data.keys).to match_array(['cells', 'line']) expect(raw_data['cells']).to eq(['a', 'row']) end before(:each) do @row = clazz.new end it 'has cells' do @row.should respond_to(:cells) end it 'can get and set its cells' do @row.cells = :some_cells @row.cells.should == :some_cells @row.cells = :some_other_cells @row.cells.should == :some_other_cells end it 'starts with no cells' do @row.cells.should == [] end context 'table row output edge cases' do it 'is a String' do @row.to_s.should be_a(String) end it 'can output an empty table row' do expect { @row.to_s }.to_not raise_error end end end