Sha256: dcfabaa6d1bd82381bac0ebf01016ba074a184ae6622ba835427a99901d8b008

Contents?: true

Size: 688 Bytes

Versions: 29

Compression:

Stored size: 688 Bytes

Contents

# -*- coding: utf-8 -*-
require 'helper'

class TestRegressionSimple04 < Test::Unit::TestCase
  def setup
    setup_dir_var
  end

  def teardown
    File.delete(@xlsx) if File.exist?(@xlsx)
  end

  def test_simple04
    @xlsx = 'simple04.xlsx'
    workbook  = WriteXLSX.new(@xlsx)
    worksheet = workbook.add_worksheet

    worksheet.set_column(0, 0, 12)

    format1 = workbook.add_format(:num_format => 20)
    format2 = workbook.add_format(:num_format => 14)

    worksheet.write_date_time(0, 0, 'T12:00', format1)
    worksheet.write_date_time(1, 0, '2013-01-27T', format2)

    workbook.close
    compare_xlsx_for_regression(File.join(@regression_output, @xlsx), @xlsx)
  end
end

Version data entries

29 entries across 29 versions & 1 rubygems

Version Path
write_xlsx-0.73.0 test/regression/test_simple04.rb
write_xlsx-0.72.3.beta1 test/regression/test_simple04.rb
write_xlsx-0.72.2 test/regression/test_simple04.rb
write_xlsx-0.72.1 test/regression/test_simple04.rb
write_xlsx-0.72.0 test/regression/test_simple04.rb
write_xlsx-0.71.0 test/regression/test_simple04.rb
write_xlsx-0.70.0 test/regression/test_simple04.rb
write_xlsx-0.69.0 test/regression/test_simple04.rb
write_xlsx-0.65.1 test/regression/test_simple04.rb