write_xlsx 0.76.3 → 0.77.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Changes +3 -0
- data/README.md +1 -1
- data/lib/write_xlsx/chart/series.rb +1 -0
- data/lib/write_xlsx/version.rb +1 -1
- data/lib/write_xlsx/worksheet/data_validation.rb +8 -0
- data/test/regression/test_chart_format19.rb +47 -0
- data/test/regression/test_chart_size04.rb +41 -0
- data/test/regression/test_chart_size05.rb +39 -0
- data/test/regression/test_data_validation01.rb +22 -0
- data/test/regression/test_data_validation02.rb +27 -0
- data/test/regression/test_data_validation03.rb +44 -0
- data/test/regression/test_data_validation04.rb +41 -0
- data/test/regression/test_data_validation05.rb +40 -0
- data/test/regression/test_merge_cells01.rb +29 -0
- data/test/regression/xlsx_files/chart_format19.xlsx +0 -0
- data/test/regression/xlsx_files/chart_size04.xlsx +0 -0
- data/test/regression/xlsx_files/data_validation01.xlsx +0 -0
- data/test/regression/xlsx_files/data_validation02.xlsx +0 -0
- data/test/regression/xlsx_files/data_validation03.xlsx +0 -0
- data/test/regression/xlsx_files/merge_cells01.xlsx +0 -0
- metadata +32 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 95c46c19ee5fb6110f768981941274fb0aa6e4cf
|
4
|
+
data.tar.gz: 5a78de00b1824fa2f063b7444ab6653412a923c7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f7e82cd896dae420cf28961abebb3103fe0c204c3313115e6a32eada176c10ef4efeb657bf8267b6891e82b53d65501db26596b8ee8fb9f756df99815d076530
|
7
|
+
data.tar.gz: 67820ece81fa1ce10e9a014df0aaa2db41992849ac08785f7f2c35e095821d477b1e99b354beb1336d2fe630b2c3b15e99911395af19a39fc3fb1b0b948b0cd1
|
data/Changes
CHANGED
data/README.md
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
gem to create a new file in the Excel 2007+ XLSX format, and you can use the
|
6
6
|
same interface as writeexcel gem. write_xlsx is converted from Perl's module
|
7
|
-
[Excel::Writer::XLSX-0.
|
7
|
+
[Excel::Writer::XLSX-0.77](https://github.com/jmcnamara/excel-writer-xlsx) .
|
8
8
|
|
9
9
|
## Description
|
10
10
|
|
data/lib/write_xlsx/version.rb
CHANGED
@@ -49,6 +49,14 @@ def initialize(*args)
|
|
49
49
|
@error_type = has_key?(:error_type) ? error_type_hash[@error_type.downcase] : 0
|
50
50
|
|
51
51
|
convert_date_time_value_if_required
|
52
|
+
# Check that the input title doesn't exceed the maximum length.
|
53
|
+
if @input_title && @input_title.length > 32
|
54
|
+
raise "Length of input title '#{@input_title}' exceeds Excel's limit of 32"
|
55
|
+
end
|
56
|
+
# Check that the input message doesn't exceed the maximum length.
|
57
|
+
if @input_message && @input_message.length > 255
|
58
|
+
raise "Length of input message '#{@input_message}' exceeds Excel's limit of 255"
|
59
|
+
end
|
52
60
|
set_some_defaults
|
53
61
|
|
54
62
|
# A (for now) undocumented parameter to pass additional cell ranges.
|
@@ -0,0 +1,47 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
require 'helper'
|
3
|
+
|
4
|
+
class TestRegressionChartFormat19 < Test::Unit::TestCase
|
5
|
+
def setup
|
6
|
+
setup_dir_var
|
7
|
+
end
|
8
|
+
|
9
|
+
def teardown
|
10
|
+
File.delete(@xlsx) if File.exist?(@xlsx)
|
11
|
+
end
|
12
|
+
|
13
|
+
def test_chart_format19
|
14
|
+
@xlsx = 'chart_format19.xlsx'
|
15
|
+
workbook = WriteXLSX.new(@xlsx)
|
16
|
+
worksheet = workbook.add_worksheet
|
17
|
+
chart = workbook.add_chart(
|
18
|
+
:type => 'column',
|
19
|
+
:subtype => 'stacked',
|
20
|
+
:embedded => 1
|
21
|
+
)
|
22
|
+
|
23
|
+
# For testing, copy the randomly generated axis ids in the target xlsx file.
|
24
|
+
chart.instance_variable_set(:@axis_ids, [56127488, 57455360])
|
25
|
+
|
26
|
+
data = [
|
27
|
+
[ 1, 2, 3, 4, 5 ],
|
28
|
+
[ 2, 4, 6, 8, 10 ],
|
29
|
+
[ 3, 6, 9, 12, 15 ]
|
30
|
+
]
|
31
|
+
|
32
|
+
worksheet.write('A1', data)
|
33
|
+
|
34
|
+
chart.add_series(:values => '=Sheet1!$A$1:$A$5')
|
35
|
+
chart.add_series(:values => '=Sheet1!$B$1:$B$5')
|
36
|
+
chart.add_series(
|
37
|
+
:values => '=Sheet1!$C$1:$C$5',
|
38
|
+
:data_labels => { :value => 1, :position => :inside_base }
|
39
|
+
)
|
40
|
+
|
41
|
+
worksheet.insert_chart('E9', chart)
|
42
|
+
|
43
|
+
workbook.close
|
44
|
+
compare_xlsx_for_regression(
|
45
|
+
File.join(@regression_output, @xlsx), @xlsx)
|
46
|
+
end
|
47
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
require 'helper'
|
3
|
+
|
4
|
+
class TestRegressionChartSize04 < Test::Unit::TestCase
|
5
|
+
def setup
|
6
|
+
setup_dir_var
|
7
|
+
end
|
8
|
+
|
9
|
+
def teardown
|
10
|
+
File.delete(@xlsx) if File.exist?(@xlsx)
|
11
|
+
end
|
12
|
+
|
13
|
+
def test_chart_size04
|
14
|
+
@xlsx = 'chart_size04.xlsx'
|
15
|
+
workbook = WriteXLSX.new(@xlsx)
|
16
|
+
worksheet = workbook.add_worksheet
|
17
|
+
chart = workbook.add_chart(:type => 'column', :embedded => 1)
|
18
|
+
|
19
|
+
# For testing, copy the randomly generated axis ids in the target xlsx file.
|
20
|
+
chart.instance_variable_set(:@axis_ids, [73773440, 73774976])
|
21
|
+
|
22
|
+
data = [
|
23
|
+
[1, 2, 3, 4, 5],
|
24
|
+
[2, 4, 6, 8, 10],
|
25
|
+
[3, 6, 9, 12, 15]
|
26
|
+
]
|
27
|
+
|
28
|
+
worksheet.write('A1', data)
|
29
|
+
|
30
|
+
chart.add_series(:values => '=Sheet1!$A$1:$A$5')
|
31
|
+
chart.add_series(:values => '=Sheet1!$B$1:$B$5')
|
32
|
+
chart.add_series(:values => '=Sheet1!$C$1:$C$5')
|
33
|
+
|
34
|
+
chart.set_size(:x_offset => 8, :y_offset => 9)
|
35
|
+
|
36
|
+
worksheet.insert_chart('E9', chart)
|
37
|
+
|
38
|
+
workbook.close
|
39
|
+
compare_xlsx_for_regression(File.join(@regression_output, @xlsx), @xlsx)
|
40
|
+
end
|
41
|
+
end
|
@@ -0,0 +1,39 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
require 'helper'
|
3
|
+
|
4
|
+
class TestRegressionChartSize05 < Test::Unit::TestCase
|
5
|
+
def setup
|
6
|
+
setup_dir_var
|
7
|
+
end
|
8
|
+
|
9
|
+
def teardown
|
10
|
+
File.delete(@xlsx) if File.exist?(@xlsx)
|
11
|
+
end
|
12
|
+
|
13
|
+
def test_chart_size05
|
14
|
+
@xlsx = 'chart_size04.xlsx'
|
15
|
+
workbook = WriteXLSX.new(@xlsx)
|
16
|
+
worksheet = workbook.add_worksheet
|
17
|
+
chart = workbook.add_chart(:type => 'column', :embedded => 1)
|
18
|
+
|
19
|
+
# For testing, copy the randomly generated axis ids in the target xlsx file.
|
20
|
+
chart.instance_variable_set(:@axis_ids, [73773440, 73774976])
|
21
|
+
|
22
|
+
data = [
|
23
|
+
[1, 2, 3, 4, 5],
|
24
|
+
[2, 4, 6, 8, 10],
|
25
|
+
[3, 6, 9, 12, 15]
|
26
|
+
]
|
27
|
+
|
28
|
+
worksheet.write('A1', data)
|
29
|
+
|
30
|
+
chart.add_series(:values => '=Sheet1!$A$1:$A$5')
|
31
|
+
chart.add_series(:values => '=Sheet1!$B$1:$B$5')
|
32
|
+
chart.add_series(:values => '=Sheet1!$C$1:$C$5')
|
33
|
+
|
34
|
+
worksheet.insert_chart('E9', chart, 8, 9)
|
35
|
+
|
36
|
+
workbook.close
|
37
|
+
compare_xlsx_for_regression(File.join(@regression_output, @xlsx), @xlsx)
|
38
|
+
end
|
39
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
require 'helper'
|
3
|
+
|
4
|
+
class TestDataValidation01 < Test::Unit::TestCase
|
5
|
+
def setup
|
6
|
+
setup_dir_var
|
7
|
+
end
|
8
|
+
|
9
|
+
def teardown
|
10
|
+
File.delete(@xlsx) if File.exist?(@xlsx)
|
11
|
+
end
|
12
|
+
|
13
|
+
def test_data_validation01
|
14
|
+
@xlsx = 'data_validation01.xlsx'
|
15
|
+
workbook = WriteXLSX.new(@xlsx)
|
16
|
+
worksheet = workbook.add_worksheet
|
17
|
+
|
18
|
+
worksheet.data_validation('C2', validate: 'list', value: ['Foo', 'Bar', 'Baz'])
|
19
|
+
workbook.close
|
20
|
+
compare_xlsx_for_regression(File.join(@regression_output, @xlsx), @xlsx)
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
require 'helper'
|
3
|
+
|
4
|
+
class TestDataValidation02 < Test::Unit::TestCase
|
5
|
+
def setup
|
6
|
+
setup_dir_var
|
7
|
+
end
|
8
|
+
|
9
|
+
def teardown
|
10
|
+
File.delete(@xlsx) if File.exist?(@xlsx)
|
11
|
+
end
|
12
|
+
|
13
|
+
def test_data_validation02
|
14
|
+
@xlsx = 'data_validation02.xlsx'
|
15
|
+
workbook = WriteXLSX.new(@xlsx)
|
16
|
+
worksheet = workbook.add_worksheet
|
17
|
+
|
18
|
+
worksheet.data_validation('C2',
|
19
|
+
validate: 'list',
|
20
|
+
value: ['Foo', 'Bar', 'Baz'],
|
21
|
+
input_title: 'This is the input title',
|
22
|
+
input_message: 'This is the input message'
|
23
|
+
)
|
24
|
+
workbook.close
|
25
|
+
compare_xlsx_for_regression(File.join(@regression_output, @xlsx), @xlsx)
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,44 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
require 'helper'
|
3
|
+
|
4
|
+
class TestDataValidation03 < Test::Unit::TestCase
|
5
|
+
def setup
|
6
|
+
setup_dir_var
|
7
|
+
end
|
8
|
+
|
9
|
+
def teardown
|
10
|
+
File.delete(@xlsx) if File.exist?(@xlsx)
|
11
|
+
end
|
12
|
+
|
13
|
+
def test_data_validation03
|
14
|
+
@xlsx = 'data_validation03.xlsx'
|
15
|
+
workbook = WriteXLSX.new(@xlsx)
|
16
|
+
worksheet = workbook.add_worksheet
|
17
|
+
|
18
|
+
worksheet.data_validation('C2',
|
19
|
+
validate: 'list',
|
20
|
+
value: ['Foo', 'Bar', 'Baz'],
|
21
|
+
input_title: 'This is the input title',
|
22
|
+
input_message: 'This is the input message'
|
23
|
+
)
|
24
|
+
|
25
|
+
values = [
|
26
|
+
"Foobar", "Foobas", "Foobat", "Foobau", "Foobav", "Foobaw", "Foobax",
|
27
|
+
"Foobay", "Foobaz", "Foobba", "Foobbb", "Foobbc", "Foobbd", "Foobbe",
|
28
|
+
"Foobbf", "Foobbg", "Foobbh", "Foobbi", "Foobbj", "Foobbk", "Foobbl",
|
29
|
+
"Foobbm", "Foobbn", "Foobbo", "Foobbp", "Foobbq", "Foobbr", "Foobbs",
|
30
|
+
"Foobbt", "Foobbu", "Foobbv", "Foobbw", "Foobbx", "Foobby", "Foobbz",
|
31
|
+
"Foobca", "End"
|
32
|
+
]
|
33
|
+
|
34
|
+
worksheet.data_validation('D6',
|
35
|
+
validate: 'list',
|
36
|
+
value: values,
|
37
|
+
input_title: 'This is the longest input title1',
|
38
|
+
input_message: 'This is the longest input message ' + "a"*221
|
39
|
+
)
|
40
|
+
|
41
|
+
workbook.close
|
42
|
+
compare_xlsx_for_regression(File.join(@regression_output, @xlsx), @xlsx)
|
43
|
+
end
|
44
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
require 'helper'
|
3
|
+
|
4
|
+
class TestDataValidation04 < Test::Unit::TestCase
|
5
|
+
def setup
|
6
|
+
setup_dir_var
|
7
|
+
end
|
8
|
+
|
9
|
+
def teardown
|
10
|
+
File.delete(@xlsx) if File.exist?(@xlsx)
|
11
|
+
end
|
12
|
+
|
13
|
+
def test_data_validation04
|
14
|
+
@xlsx = 'data_validation02.xlsx'
|
15
|
+
workbook = WriteXLSX.new(@xlsx)
|
16
|
+
worksheet = workbook.add_worksheet
|
17
|
+
|
18
|
+
values = [
|
19
|
+
"Foobar", "Foobas", "Foobat", "Foobau", "Foobav", "Foobaw", "Foobax",
|
20
|
+
"Foobay", "Foobaz", "Foobba", "Foobbb", "Foobbc", "Foobbd", "Foobbe",
|
21
|
+
"Foobbf", "Foobbg", "Foobbh", "Foobbi", "Foobbj", "Foobbk", "Foobbl",
|
22
|
+
"Foobbm", "Foobbn", "Foobbo", "Foobbp", "Foobbq", "Foobbr", "Foobbs",
|
23
|
+
"Foobbt", "Foobbu", "Foobbv", "Foobbw", "Foobbx", "Foobby", "Foobbz",
|
24
|
+
"Foobca", "End"
|
25
|
+
]
|
26
|
+
|
27
|
+
input_title = 'a' * 33
|
28
|
+
e = assert_raise(RuntimeError) do
|
29
|
+
worksheet.data_validation('D6',
|
30
|
+
validate: 'list',
|
31
|
+
value: values,
|
32
|
+
input_title: input_title.dup,
|
33
|
+
input_message: 'This is the longest input message ' + "a"*221
|
34
|
+
)
|
35
|
+
end
|
36
|
+
message = e.message
|
37
|
+
assert_equal("Length of input title '#{input_title}' exceeds Excel's limit of 32",
|
38
|
+
message)
|
39
|
+
workbook.close
|
40
|
+
end
|
41
|
+
end
|
@@ -0,0 +1,40 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
require 'helper'
|
3
|
+
|
4
|
+
class TestDataValidation05 < Test::Unit::TestCase
|
5
|
+
def setup
|
6
|
+
setup_dir_var
|
7
|
+
end
|
8
|
+
|
9
|
+
def teardown
|
10
|
+
File.delete(@xlsx) if File.exist?(@xlsx)
|
11
|
+
end
|
12
|
+
|
13
|
+
def test_data_validation05
|
14
|
+
@xlsx = 'data_validation02.xlsx'
|
15
|
+
workbook = WriteXLSX.new(@xlsx)
|
16
|
+
worksheet = workbook.add_worksheet
|
17
|
+
|
18
|
+
values = [
|
19
|
+
"Foobar", "Foobas", "Foobat", "Foobau", "Foobav", "Foobaw", "Foobax",
|
20
|
+
"Foobay", "Foobaz", "Foobba", "Foobbb", "Foobbc", "Foobbd", "Foobbe",
|
21
|
+
"Foobbf", "Foobbg", "Foobbh", "Foobbi", "Foobbj", "Foobbk", "Foobbl",
|
22
|
+
"Foobbm", "Foobbn", "Foobbo", "Foobbp", "Foobbq", "Foobbr", "Foobbs",
|
23
|
+
"Foobbt", "Foobbu", "Foobbv", "Foobbw", "Foobbx", "Foobby", "Foobbz",
|
24
|
+
"Foobca", "End"
|
25
|
+
]
|
26
|
+
input_message = 'a' * 256
|
27
|
+
e = assert_raise(RuntimeError) do
|
28
|
+
worksheet.data_validation('D6',
|
29
|
+
validate: 'list',
|
30
|
+
value: values,
|
31
|
+
input_title: 'This is the longest input title',
|
32
|
+
input_message: input_message.dup
|
33
|
+
)
|
34
|
+
end
|
35
|
+
message = e.message
|
36
|
+
assert_equal("Length of input message '#{input_message}' exceeds Excel's limit of 255",
|
37
|
+
message)
|
38
|
+
workbook.close
|
39
|
+
end
|
40
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
require 'helper'
|
3
|
+
|
4
|
+
class TestRegressionMergeCells01 < Test::Unit::TestCase
|
5
|
+
def setup
|
6
|
+
setup_dir_var
|
7
|
+
end
|
8
|
+
|
9
|
+
def teardown
|
10
|
+
File.delete(@xlsx) if File.exist?(@xlsx)
|
11
|
+
end
|
12
|
+
|
13
|
+
def test_merge_cells01
|
14
|
+
@xlsx = 'merge_cells01.xlsx'
|
15
|
+
workbook = WriteXLSX.new(@xlsx)
|
16
|
+
worksheet = workbook.add_worksheet
|
17
|
+
format = workbook.add_format(:align => 'center')
|
18
|
+
|
19
|
+
worksheet.set_selection('A4')
|
20
|
+
|
21
|
+
worksheet.merge_range('A1:A2', 'col1', format)
|
22
|
+
worksheet.merge_range('B1:B2', 'col2', format)
|
23
|
+
worksheet.merge_range('C1:C2', 'col3', format)
|
24
|
+
worksheet.merge_range('D1:D2', 'col4', format)
|
25
|
+
|
26
|
+
workbook.close
|
27
|
+
compare_xlsx_for_regression(File.join(@regression_output, @xlsx), @xlsx)
|
28
|
+
end
|
29
|
+
end
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: write_xlsx
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.77.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hideo NAKAMURA
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-05-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubyzip
|
@@ -497,6 +497,7 @@ files:
|
|
497
497
|
- test/regression/test_chart_format16.rb
|
498
498
|
- test/regression/test_chart_format17.rb
|
499
499
|
- test/regression/test_chart_format18.rb
|
500
|
+
- test/regression/test_chart_format19.rb
|
500
501
|
- test/regression/test_chart_gap01.rb
|
501
502
|
- test/regression/test_chart_gap02.rb
|
502
503
|
- test/regression/test_chart_gap03.rb
|
@@ -559,6 +560,8 @@ files:
|
|
559
560
|
- test/regression/test_chart_size01.rb
|
560
561
|
- test/regression/test_chart_size02.rb
|
561
562
|
- test/regression/test_chart_size03.rb
|
563
|
+
- test/regression/test_chart_size04.rb
|
564
|
+
- test/regression/test_chart_size05.rb
|
562
565
|
- test/regression/test_chart_sparse01.rb
|
563
566
|
- test/regression/test_chart_stock01.rb
|
564
567
|
- test/regression/test_chart_stock02.rb
|
@@ -601,6 +604,11 @@ files:
|
|
601
604
|
- test/regression/test_cond_format12.rb
|
602
605
|
- test/regression/test_cond_format13.rb
|
603
606
|
- test/regression/test_custom_colors01.rb
|
607
|
+
- test/regression/test_data_validation01.rb
|
608
|
+
- test/regression/test_data_validation02.rb
|
609
|
+
- test/regression/test_data_validation03.rb
|
610
|
+
- test/regression/test_data_validation04.rb
|
611
|
+
- test/regression/test_data_validation05.rb
|
604
612
|
- test/regression/test_date_1904_01.rb
|
605
613
|
- test/regression/test_date_1904_02.rb
|
606
614
|
- test/regression/test_date_examples01.rb
|
@@ -672,6 +680,7 @@ files:
|
|
672
680
|
- test/regression/test_image18.rb
|
673
681
|
- test/regression/test_image19.rb
|
674
682
|
- test/regression/test_macro01.rb
|
683
|
+
- test/regression/test_merge_cells01.rb
|
675
684
|
- test/regression/test_outline01.rb
|
676
685
|
- test/regression/test_outline02.rb
|
677
686
|
- test/regression/test_outline03.rb
|
@@ -950,6 +959,7 @@ files:
|
|
950
959
|
- test/regression/xlsx_files/chart_format16.xlsx
|
951
960
|
- test/regression/xlsx_files/chart_format17.xlsx
|
952
961
|
- test/regression/xlsx_files/chart_format18.xlsx
|
962
|
+
- test/regression/xlsx_files/chart_format19.xlsx
|
953
963
|
- test/regression/xlsx_files/chart_gap01.xlsx
|
954
964
|
- test/regression/xlsx_files/chart_gap02.xlsx
|
955
965
|
- test/regression/xlsx_files/chart_gap03.xlsx
|
@@ -1007,6 +1017,7 @@ files:
|
|
1007
1017
|
- test/regression/xlsx_files/chart_scatter12.xlsx
|
1008
1018
|
- test/regression/xlsx_files/chart_scatter14.xlsx
|
1009
1019
|
- test/regression/xlsx_files/chart_size01.xlsx
|
1020
|
+
- test/regression/xlsx_files/chart_size04.xlsx
|
1010
1021
|
- test/regression/xlsx_files/chart_sparse01.xlsx
|
1011
1022
|
- test/regression/xlsx_files/chart_stock01.xlsx
|
1012
1023
|
- test/regression/xlsx_files/chart_stock02.xlsx
|
@@ -1049,6 +1060,9 @@ files:
|
|
1049
1060
|
- test/regression/xlsx_files/cond_format11.xlsx
|
1050
1061
|
- test/regression/xlsx_files/cond_format12.xlsx
|
1051
1062
|
- test/regression/xlsx_files/custom_colors01.xlsx
|
1063
|
+
- test/regression/xlsx_files/data_validation01.xlsx
|
1064
|
+
- test/regression/xlsx_files/data_validation02.xlsx
|
1065
|
+
- test/regression/xlsx_files/data_validation03.xlsx
|
1052
1066
|
- test/regression/xlsx_files/date_1904_01.xlsx
|
1053
1067
|
- test/regression/xlsx_files/date_1904_02.xlsx
|
1054
1068
|
- test/regression/xlsx_files/date_examples01.xlsx
|
@@ -1121,6 +1135,7 @@ files:
|
|
1121
1135
|
- test/regression/xlsx_files/image18.xlsx
|
1122
1136
|
- test/regression/xlsx_files/image19.xlsx
|
1123
1137
|
- test/regression/xlsx_files/macro01.xlsm
|
1138
|
+
- test/regression/xlsx_files/merge_cells01.xlsx
|
1124
1139
|
- test/regression/xlsx_files/outline01.xlsx
|
1125
1140
|
- test/regression/xlsx_files/outline02.xlsx
|
1126
1141
|
- test/regression/xlsx_files/outline03.xlsx
|
@@ -1714,6 +1729,7 @@ test_files:
|
|
1714
1729
|
- test/regression/test_chart_format16.rb
|
1715
1730
|
- test/regression/test_chart_format17.rb
|
1716
1731
|
- test/regression/test_chart_format18.rb
|
1732
|
+
- test/regression/test_chart_format19.rb
|
1717
1733
|
- test/regression/test_chart_gap01.rb
|
1718
1734
|
- test/regression/test_chart_gap02.rb
|
1719
1735
|
- test/regression/test_chart_gap03.rb
|
@@ -1776,6 +1792,8 @@ test_files:
|
|
1776
1792
|
- test/regression/test_chart_size01.rb
|
1777
1793
|
- test/regression/test_chart_size02.rb
|
1778
1794
|
- test/regression/test_chart_size03.rb
|
1795
|
+
- test/regression/test_chart_size04.rb
|
1796
|
+
- test/regression/test_chart_size05.rb
|
1779
1797
|
- test/regression/test_chart_sparse01.rb
|
1780
1798
|
- test/regression/test_chart_stock01.rb
|
1781
1799
|
- test/regression/test_chart_stock02.rb
|
@@ -1818,6 +1836,11 @@ test_files:
|
|
1818
1836
|
- test/regression/test_cond_format12.rb
|
1819
1837
|
- test/regression/test_cond_format13.rb
|
1820
1838
|
- test/regression/test_custom_colors01.rb
|
1839
|
+
- test/regression/test_data_validation01.rb
|
1840
|
+
- test/regression/test_data_validation02.rb
|
1841
|
+
- test/regression/test_data_validation03.rb
|
1842
|
+
- test/regression/test_data_validation04.rb
|
1843
|
+
- test/regression/test_data_validation05.rb
|
1821
1844
|
- test/regression/test_date_1904_01.rb
|
1822
1845
|
- test/regression/test_date_1904_02.rb
|
1823
1846
|
- test/regression/test_date_examples01.rb
|
@@ -1889,6 +1912,7 @@ test_files:
|
|
1889
1912
|
- test/regression/test_image18.rb
|
1890
1913
|
- test/regression/test_image19.rb
|
1891
1914
|
- test/regression/test_macro01.rb
|
1915
|
+
- test/regression/test_merge_cells01.rb
|
1892
1916
|
- test/regression/test_outline01.rb
|
1893
1917
|
- test/regression/test_outline02.rb
|
1894
1918
|
- test/regression/test_outline03.rb
|
@@ -2167,6 +2191,7 @@ test_files:
|
|
2167
2191
|
- test/regression/xlsx_files/chart_format16.xlsx
|
2168
2192
|
- test/regression/xlsx_files/chart_format17.xlsx
|
2169
2193
|
- test/regression/xlsx_files/chart_format18.xlsx
|
2194
|
+
- test/regression/xlsx_files/chart_format19.xlsx
|
2170
2195
|
- test/regression/xlsx_files/chart_gap01.xlsx
|
2171
2196
|
- test/regression/xlsx_files/chart_gap02.xlsx
|
2172
2197
|
- test/regression/xlsx_files/chart_gap03.xlsx
|
@@ -2224,6 +2249,7 @@ test_files:
|
|
2224
2249
|
- test/regression/xlsx_files/chart_scatter12.xlsx
|
2225
2250
|
- test/regression/xlsx_files/chart_scatter14.xlsx
|
2226
2251
|
- test/regression/xlsx_files/chart_size01.xlsx
|
2252
|
+
- test/regression/xlsx_files/chart_size04.xlsx
|
2227
2253
|
- test/regression/xlsx_files/chart_sparse01.xlsx
|
2228
2254
|
- test/regression/xlsx_files/chart_stock01.xlsx
|
2229
2255
|
- test/regression/xlsx_files/chart_stock02.xlsx
|
@@ -2266,6 +2292,9 @@ test_files:
|
|
2266
2292
|
- test/regression/xlsx_files/cond_format11.xlsx
|
2267
2293
|
- test/regression/xlsx_files/cond_format12.xlsx
|
2268
2294
|
- test/regression/xlsx_files/custom_colors01.xlsx
|
2295
|
+
- test/regression/xlsx_files/data_validation01.xlsx
|
2296
|
+
- test/regression/xlsx_files/data_validation02.xlsx
|
2297
|
+
- test/regression/xlsx_files/data_validation03.xlsx
|
2269
2298
|
- test/regression/xlsx_files/date_1904_01.xlsx
|
2270
2299
|
- test/regression/xlsx_files/date_1904_02.xlsx
|
2271
2300
|
- test/regression/xlsx_files/date_examples01.xlsx
|
@@ -2338,6 +2367,7 @@ test_files:
|
|
2338
2367
|
- test/regression/xlsx_files/image18.xlsx
|
2339
2368
|
- test/regression/xlsx_files/image19.xlsx
|
2340
2369
|
- test/regression/xlsx_files/macro01.xlsm
|
2370
|
+
- test/regression/xlsx_files/merge_cells01.xlsx
|
2341
2371
|
- test/regression/xlsx_files/outline01.xlsx
|
2342
2372
|
- test/regression/xlsx_files/outline02.xlsx
|
2343
2373
|
- test/regression/xlsx_files/outline03.xlsx
|