summaryrefslogtreecommitdiffhomepage
path: root/test/workbook/worksheet/tc_outline_pr.rb
blob: a40108b15e6052125d27244298ed7b23342942c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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