aboutsummaryrefslogtreecommitdiffstats
path: root/test/helpers/test_formulas.rb
blob: 509fba42940fd354590f74564043596507e61b16 (plain) (blame)
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