Sha256: 4f8f41016af7814c58e371ad40dba3bc1cd6a3460095878fb4b2668fff6cc83a
Contents?: true
Size: 1.88 KB
Versions: 4
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__) + "/../fixtures/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
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
caxlsx-3.1.1 | test/drawing/tc_hyperlink.rb |
caxlsx-3.1.0 | test/drawing/tc_hyperlink.rb |
caxlsx-3.0.4 | test/drawing/tc_hyperlink.rb |
caxlsx-3.0.3 | test/drawing/tc_hyperlink.rb |