# -*- coding: utf-8 -*- require 'helper' require 'write_xlsx' require 'stringio' class TestSparkline11 < Minitest::Test def setup @workbook = WriteXLSX.new(StringIO.new) @worksheet = @workbook.add_worksheet end def test_sparkline11 @worksheet.instance_variable_set(:@excel_version, 2010) @worksheet.select data = [-2, 2, 3, -1, 0] @worksheet.write('A1', data) @worksheet.write('A2', data) @worksheet.write('A3', data) @worksheet.write('A4', [1, 2, 3, 4, 5]) # Set up sparklines @worksheet.add_sparkline( { :location => 'F1', :range => 'A1:E1', :max => 0.5, :min => -0.5, :axis => 1, :reverse => 1, :empty_cells => 'zero', :weight => 0.25, :high_point => 1, :low_point => 1, :negative_points => 1, :first_point => 1, :last_point => 1, :markers => 1 } ) @worksheet.add_sparkline( { :location => 'F2', :range => 'A2:E2', :max => 'group', :min => 'group', :empty_cells => 'connect', :weight => 2.25 } ) @worksheet.add_sparkline( { :location => 'F3', :range => 'A3:E3', :max => 'group', :min => '0', :show_hidden => 1, :weight => 6, :date_axis => 'A4:E4' } ) # End sparklines @worksheet.assemble_xml_file result = got_to_array(@worksheet.instance_variable_get(:@writer).string) expected = expected_to_array(expected_xml) assert_equal(expected, result) end def expected_xml < -2 2 3 -1 0 -2 2 3 -1 0 -2 2 3 -1 0 1 2 3 4 5 Sheet1!A4:E4 Sheet1!A3:E3 F3 Sheet1!A2:E2 F2 Sheet1!A1:E1 F1 EOS end end