spec/rspreadsheet_spec.rb in rspreadsheet-0.0.4 vs spec/rspreadsheet_spec.rb in rspreadsheet-0.0.5

- old
+ new

@@ -15,11 +15,11 @@ before do # @a = Rspreadsheet::Tools::SparseRepeatedArray.new() end # Float::INFINITY its 'set values can be read back unchanged' do - pending + skip @a[3..5]='test' @a[4].should == 'test' end end @@ -127,10 +127,10 @@ end it 'can include links' do @sheet2.A12.should == '[http://example.org/]' end it 'contains good row and col coordinates even after table:number-columns-repeated cells' do - pending + skip @cell = @sheet2.cells(13,5) @cell.value.should == 'afterrepeated' @cell.row.should == 13 @cell.col.should == 5 end