Sha256: 2684e1ad8cc3f2f70a6731d829e6a51caec8552716bb67c22c014bb0c42d45f1

Contents?: true

Size: 452 Bytes

Versions: 1

Compression:

Stored size: 452 Bytes

Contents

require 'tc_helper.rb'

class TestOutlinePr < Test::Unit::TestCase
 def setup
   @outline_pr = Axlsx::OutlinePr.new(:summary_below => false, :summary_right => true, :apply_styles => false)
 end

 def test_summary_below
   assert_equal false, @outline_pr.summary_below
 end

 def test_summary_right
   assert_equal true, @outline_pr.summary_right
 end
 
 def test_apply_styles
   assert_equal false, @outline_pr.apply_styles
 end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
caxlsx-3.2.0 test/workbook/worksheet/tc_outline_pr.rb