# frozen_string_literal: true require 'tc_helper' class TestStrData < Test::Unit::TestCase def setup @str_data = Axlsx::StrData.new data: ["1", "2", "3"] end def test_to_xml_string_strLit str = +'' str << '' str << @str_data.to_xml_string doc = Nokogiri::XML(str) assert_equal(1, doc.xpath("//c:strLit/c:ptCount[@val=3]").size) assert_equal(1, doc.xpath("//c:strLit/c:pt/c:v[text()='1']").size) end end