Sha256: dc325ec9746342988ff63276f885b5e9be4a914a9d158c740979bc63678c0e02
Contents?: true
Size: 1.05 KB
Versions: 13
Compression:
Stored size: 1.05 KB
Contents
# -*- coding: utf-8 -*- require 'helper' require 'write_xlsx/chart' class TestWriteStyle < Test::Unit::TestCase def setup @chart = Writexlsx::Chart.new('Bar') end def test_write_style_1 expected = '<c:style val="1"/>' @chart.set_style(1) @chart.__send__('write_style') result = @chart.instance_variable_get(:@writer).string assert_equal(expected, result) end def test_write_style_with_default_style_not_written expected = '' @chart.set_style(2) @chart.__send__('write_style') result = @chart.instance_variable_get(:@writer).string assert_equal(expected, result) end def test_write_style_with_outside_range expected = '' @chart.set_style(-1) @chart.__send__('write_style') result = @chart.instance_variable_get(:@writer).string assert_equal(expected, result) end def test_write_style_with_outside_range_49 expected = '' @chart.set_style(49) @chart.__send__('write_style') result = @chart.instance_variable_get(:@writer).string assert_equal(expected, result) end end
Version data entries
13 entries across 13 versions & 1 rubygems