Sha256: f6df23c3447781fad3018123fd1d20951d2aeaa1d2a597e66a591baf6fe6dff1
Contents?: true
Size: 390 Bytes
Versions: 19
Compression:
Stored size: 390 Bytes
Contents
# -*- coding: utf-8 -*- require 'helper' require 'write_xlsx' require 'stringio' class TestWriteFormula < Minitest::Test def setup @workbook = WriteXLSX.new(StringIO.new) @worksheet = @workbook.add_worksheet('') end def test_write_formula_does_not_change_formula_string formula = '=PI()' @worksheet.write('A1', formula) assert_equal('=PI()', formula) end end
Version data entries
19 entries across 19 versions & 1 rubygems