summaryrefslogtreecommitdiffstats
path: root/test/roo/test_libre_office.rb
blob: 7bdac45872ff2eeb5c23f4f27e1522a1f785b04d (plain) (blame)
1
2
3
4
5
6
7
8
9
require "test_helper"

class TestRooOpenOffice < Minitest::Test
  def test_libre_office
    oo = Roo::LibreOffice.new(File.join(TESTDIR, "numbers1.ods"))
    oo.default_sheet = oo.sheets.first
    assert_equal 41, oo.cell("a", 12)
  end
end