Sha256: 3d261244862c0dd1db24e27944d7352a875e3f8322bacd00e241bc8198af8aca
Contents?: true
Size: 1.88 KB
Versions: 15
Compression:
Stored size: 1.88 KB
Contents
require 'tc_helper.rb' class TestHyperlink < Test::Unit::TestCase def setup @p = Axlsx::Package.new ws = @p.workbook.add_worksheet @test_img = File.dirname(__FILE__) + "/../../examples/image1.jpeg" @image = ws.add_image :image_src => @test_img, :hyperlink => "http://axlsx.blogspot.com" @hyperlink = @image.hyperlink end def teardown end def test_href assert_nothing_raised { @hyperlink.href = "http://axlsx.blogspot.com" } assert_equal(@hyperlink.href, "http://axlsx.blogspot.com") end def test_tgtFrame assert_nothing_raised { @hyperlink.tgtFrame = "http://axlsx.blogspot.com" } assert_equal(@hyperlink.tgtFrame, "http://axlsx.blogspot.com") end def test_tooltip assert_nothing_raised { @hyperlink.tooltip = "http://axlsx.blogspot.com" } assert_equal(@hyperlink.tooltip, "http://axlsx.blogspot.com") end def test_invalidUrl assert_nothing_raised { @hyperlink.invalidUrl = "http://axlsx.blogspot.com" } assert_equal(@hyperlink.invalidUrl, "http://axlsx.blogspot.com") end def test_action assert_nothing_raised { @hyperlink.action = "flee" } assert_equal(@hyperlink.action, "flee") end def test_endSnd assert_nothing_raised { @hyperlink.endSnd = "true" } assert_raise(ArgumentError) {@hyperlink.endSnd = "bob"} assert_equal(@hyperlink.endSnd, "true") end def test_highlightClick assert_nothing_raised { @hyperlink.highlightClick = false } assert_raise(ArgumentError) {@hyperlink.highlightClick = "bob"} assert_equal(@hyperlink.highlightClick, false ) end def test_history assert_nothing_raised { @hyperlink.history = false } assert_raise(ArgumentError) {@hyperlink.history = "bob"} assert_equal(@hyperlink.history, false ) end def test_to_xml_string doc = Nokogiri::XML(@p.workbook.worksheets.first.drawing.to_xml_string) assert(doc.xpath("//a:hlinkClick")) end end
Version data entries
15 entries across 15 versions & 6 rubygems