spec/cell_spec.rb in rspreadsheet-0.4.5 vs spec/cell_spec.rb in rspreadsheet-0.4.7

- old
+ new

@@ -343,11 +343,11 @@ @cell = @sheet1.cell(1,1) @cell.formula.should be_nil @cell.formula='=1+5' @cell.formula.should eq '=1+5' end - it 'unsets cell type when formula set - we can not guess it correctly', :focus do + it 'unsets cell type when formula set - we can not guess it correctly' do @cell = @sheet1.cell(1,1) @cell.value = 'ahoj' @cell.type.should eq :string @cell.formula='=1+5' typ = @cell.xmlnode.nil? ? 'N/A' : @cell.xmlnode.attributes['value-type'] @@ -447,14 +447,14 @@ @cell.format.top.should_not_be_nil @cell.format.top.style = 'none' @cell.border_top.should_not be_nil ## ????? end - it 'automatically creates new style, if a style is automatic, some of its attributes changes and there are several cells pointing to it', :penting=>'' do + it 'automatically creates new style, if a style is automatic, some of its attributes changes and there are several cells pointing to it', :pending=>'' do end - it 'gracedully accepts nil in assignement' do + it 'gracefully accepts nil in assignement' do expect { @sheet2.cell('B1').value = nil @sheet2.cell('B2').value = nil @sheet2.cell('B3').value = nil @sheet2.cell('B22').value = nil