blob: c950accdcee034f6f02118191e136d98946fa0ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# frozen_string_literal: true
require 'tc_helper'
class TestNumDataSource < Test::Unit::TestCase
def setup
@data_source = Axlsx::NumDataSource.new data: ["1", "2", "3"]
end
def test_tag_name
assert_raise(ArgumentError) { @data_source.tag_name = :zVal }
assert_nothing_raised { @data_source.tag_name = :yVal }
assert_nothing_raised { @data_source.tag_name = :bubbleSize }
end
def test_to_xml_string_strLit
str = +'<?xml version="1.0" encoding="UTF-8"?>'
str << '<c:chartSpace xmlns:c="' << Axlsx::XML_NS_C << '">'
str << @data_source.to_xml_string
doc = Nokogiri::XML(str)
assert_equal(1, doc.xpath("//c:val").size)
end
end
|