blob: e9bed095fa0fb8d6d747082cee6c4b4d3982ae0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
require 'tc_helper.rb'
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(doc.xpath("//c:val").size, 1)
end
end
|