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.85.5 test/regression/test_simple04.rb
write_xlsx-0.85.4 test/regression/test_simple04.rb
write_xlsx-0.85.3 test/regression/test_simple04.rb
write_xlsx-0.85.2 test/regression/test_simple04.rb
write_xlsx-0.85.1 test/regression/test_simple04.rb
write_xlsx-0.83.0 test/regression/test_simple04.rb
write_xlsx-0.81.1 test/regression/test_simple04.rb
write_xlsx-0.81.0 test/regression/test_simple04.rb
write_xlsx-0.80.0 test/regression/test_simple04.rb
write_xlsx-0.79.0 test/regression/test_simple04.rb
write_xlsx-0.78.0 test/regression/test_simple04.rb
write_xlsx-0.77.2 test/regression/test_simple04.rb
write_xlsx-0.77.1 test/regression/test_simple04.rb
write_xlsx-0.77.0 test/regression/test_simple04.rb
write_xlsx-0.76.3 test/regression/test_simple04.rb
write_xlsx-0.76.2 test/regression/test_simple04.rb
write_xlsx-0.76.1 test/regression/test_simple04.rb
write_xlsx-0.76.0 test/regression/test_simple04.rb
write_xlsx-0.75.0 test/regression/test_simple04.rb
write_xlsx-0.74.0 test/regression/test_simple04.rb