File: test_formulas.rb

package info (click to toggle)
ruby-roo 3.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 8,216 kB
  • sloc: ruby: 6,529; xml: 88; makefile: 6
file content (9 lines) | stat: -rw-r--r-- 313 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
module TestFormulas
  def test_empty_sheet_formulas
    options = { name: "emptysheets", format: [:openoffice, :excelx] }
    with_each_spreadsheet(options) do |oo|
      oo.default_sheet = oo.sheets.first
      assert_equal [], oo.formulas, "An empty sheet's formulas should be an empty array"
    end
  end
end