blob: 7c3769c939f644ba068f2f37e35173c956df28a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# frozen_string_literal: true
require 'tc_helper'
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
refute @outline_pr.summary_below
end
def test_summary_right
assert @outline_pr.summary_right
end
def test_apply_styles
refute @outline_pr.apply_styles
end
end
|