rocx 0.5.7 → 0.5.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/Gemfile.lock +11 -7
- data/Rakefile +3 -8
- data/lib/rocx/elements/base_container.rb +8 -4
- data/lib/rocx/elements/paragraph.rb +4 -4
- data/lib/rocx/elements/run.rb +40 -1
- data/lib/rocx/properties.rb +5 -0
- data/lib/rocx/properties/alignment.rb +4 -19
- data/lib/rocx/properties/attribute_builder.rb +8 -2
- data/lib/rocx/properties/auto_adjust_right_indent.rb +3 -9
- data/lib/rocx/properties/auto_space_de.rb +1 -8
- data/lib/rocx/properties/auto_space_dn.rb +1 -8
- data/lib/rocx/properties/base_property.rb +20 -11
- data/lib/rocx/properties/bold.rb +1 -4
- data/lib/rocx/properties/boolean_property.rb +1 -1
- data/lib/rocx/properties/border.rb +5 -13
- data/lib/rocx/properties/borders.rb +2 -8
- data/lib/rocx/properties/caps.rb +6 -0
- data/lib/rocx/properties/character_spacing.rb +8 -0
- data/lib/rocx/properties/color.rb +13 -0
- data/lib/rocx/properties/complex_bold.rb +8 -0
- data/lib/rocx/properties/complex_font_size.rb +8 -0
- data/lib/rocx/properties/complex_italics.rb +8 -0
- data/lib/rocx/properties/complex_property.rb +16 -0
- data/lib/rocx/properties/complex_script_formatting.rb +8 -0
- data/lib/rocx/properties/compress_punctuation.rb +1 -4
- data/lib/rocx/properties/conditional_formatting.rb +17 -56
- data/lib/rocx/properties/div_id.rb +1 -18
- data/lib/rocx/properties/double_strikethrough.rb +8 -0
- data/lib/rocx/properties/east_asian_layout.rb +22 -0
- data/lib/rocx/properties/effect.rb +11 -0
- data/lib/rocx/properties/emboss.rb +6 -0
- data/lib/rocx/properties/emphasis.rb +12 -0
- data/lib/rocx/properties/expansion.rb +18 -0
- data/lib/rocx/properties/font.rb +34 -0
- data/lib/rocx/properties/font_size.rb +8 -0
- data/lib/rocx/properties/frame.rb +5 -16
- data/lib/rocx/properties/hidden_text.rb +8 -0
- data/lib/rocx/properties/highlight.rb +11 -0
- data/lib/rocx/properties/imprint.rb +6 -0
- data/lib/rocx/properties/indentation.rb +11 -24
- data/lib/rocx/properties/integer_property.rb +15 -0
- data/lib/rocx/properties/italics.rb +1 -4
- data/lib/rocx/properties/kerning.rb +8 -0
- data/lib/rocx/properties/language.rb +20 -0
- data/lib/rocx/properties/manual_width.rb +12 -0
- data/lib/rocx/properties/math.rb +8 -0
- data/lib/rocx/properties/no_proof.rb +6 -0
- data/lib/rocx/properties/numbering.rb +4 -10
- data/lib/rocx/properties/on_off_property.rb +1 -1
- data/lib/rocx/properties/outline.rb +6 -0
- data/lib/rocx/properties/outline_level.rb +2 -17
- data/lib/rocx/properties/overflow_punctuation.rb +1 -8
- data/lib/rocx/properties/paragraph_style.rb +8 -0
- data/lib/rocx/properties/position.rb +6 -0
- data/lib/rocx/properties/positive_integer_property.rb +15 -0
- data/lib/rocx/properties/right_to_left.rb +8 -0
- data/lib/rocx/properties/run_style.rb +8 -0
- data/lib/rocx/properties/shading.rb +9 -20
- data/lib/rocx/properties/shadow.rb +6 -0
- data/lib/rocx/properties/small_caps.rb +6 -0
- data/lib/rocx/properties/spacing.rb +4 -17
- data/lib/rocx/properties/spec_vanish.rb +6 -0
- data/lib/rocx/properties/strikethrough.rb +8 -0
- data/lib/rocx/properties/style.rb +15 -0
- data/lib/rocx/properties/tab.rb +1 -9
- data/lib/rocx/properties/tabs.rb +1 -9
- data/lib/rocx/properties/text_alignment.rb +11 -0
- data/lib/rocx/properties/text_direction.rb +1 -5
- data/lib/rocx/properties/textbox_tight_wrap.rb +1 -5
- data/lib/rocx/properties/toggle_property.rb +1 -1
- data/lib/rocx/properties/underline.rb +24 -0
- data/lib/rocx/properties/value_property.rb +29 -0
- data/lib/rocx/properties/vertical_alignment.rb +3 -10
- data/lib/rocx/properties/web_hidden.rb +6 -0
- data/lib/rocx/version.rb +1 -1
- data/rocx.gemspec +1 -2
- data/spec/elements/break_spec.rb +47 -0
- data/spec/elements/paragraph_spec.rb +31 -0
- data/spec/elements/run_spec.rb +15 -0
- data/spec/elements/symbol_spec.rb +24 -0
- data/spec/elements/text_spec.rb +23 -0
- data/spec/package_spec.rb +48 -0
- data/spec/parts/content_types_spec.rb +32 -0
- data/spec/parts/document_spec.rb +32 -0
- data/spec/parts/global_rels_spec.rb +13 -0
- data/spec/parts/rels_spec.rb +42 -0
- data/spec/parts/settings_spec.rb +13 -0
- data/spec/parts/styles_spec.rb +27 -0
- data/spec/properties/alignment_spec.rb +58 -0
- data/spec/properties/auto_adjust_right_indent_spec.rb +23 -0
- data/spec/properties/auto_space_de_spec.rb +23 -0
- data/spec/properties/auto_space_dn_spec.rb +23 -0
- data/spec/properties/bidi_spec.rb +23 -0
- data/spec/properties/bold_spec.rb +23 -0
- data/spec/properties/border_spec.rb +156 -0
- data/spec/properties/borders_spec.rb +66 -0
- data/spec/properties/caps_spec.rb +23 -0
- data/spec/properties/character_spacing_spec.rb +26 -0
- data/spec/properties/color_spec.rb +49 -0
- data/spec/properties/complex_bold_spec.rb +23 -0
- data/spec/properties/complex_font_size_spec.rb +24 -0
- data/spec/properties/complex_italics_spec.rb +23 -0
- data/spec/properties/complex_script_formatting_spec.rb +23 -0
- data/spec/properties/compress_punctuation_spec.rb +23 -0
- data/spec/properties/conditional_formatting_spec.rb +160 -0
- data/spec/properties/contextual_spacing_spec.rb +23 -0
- data/spec/properties/div_id_spec.rb +17 -0
- data/spec/properties/double_strikethrough_spec.rb +23 -0
- data/spec/properties/east_asian_layout_spec.rb +115 -0
- data/spec/properties/effect_spec.rb +43 -0
- data/spec/properties/emboss_spec.rb +23 -0
- data/spec/properties/emphasis_spec.rb +37 -0
- data/spec/properties/expansion_spec.rb +34 -0
- data/spec/properties/font_size_spec.rb +24 -0
- data/spec/properties/font_spec.rb +273 -0
- data/spec/properties/frame_spec.rb +338 -0
- data/spec/properties/hidden_text_spec.rb +23 -0
- data/spec/properties/highlight_spec.rb +97 -0
- data/spec/properties/imprint_spec.rb +23 -0
- data/spec/properties/indentation_spec.rb +176 -0
- data/spec/properties/italics_spec.rb +23 -0
- data/spec/properties/keep_lines_spec.rb +23 -0
- data/spec/properties/keep_next_spec.rb +23 -0
- data/spec/properties/kerning_spec.rb +24 -0
- data/spec/properties/kinsoku_spec.rb +23 -0
- data/spec/properties/language_spec.rb +29 -0
- data/spec/properties/manual_width_spec.rb +55 -0
- data/spec/properties/math_spec.rb +23 -0
- data/spec/properties/mirror_indent_spec.rb +23 -0
- data/spec/properties/no_proof_spec.rb +23 -0
- data/spec/properties/numbering_spec.rb +46 -0
- data/spec/properties/outline_level_spec.rb +20 -0
- data/spec/properties/outline_spec.rb +23 -0
- data/spec/properties/overflow_punctuation_spec.rb +23 -0
- data/spec/properties/page_break_before_spec.rb +23 -0
- data/spec/properties/paragraph_style_spec.rb +12 -0
- data/spec/properties/position_spec.rb +26 -0
- data/spec/properties/right_to_left_spec.rb +23 -0
- data/spec/properties/run_style_spec.rb +12 -0
- data/spec/properties/shading_spec.rb +135 -0
- data/spec/properties/shadow_property_spec.rb +23 -0
- data/spec/properties/small_caps_spec.rb +22 -0
- data/spec/properties/snap_to_grid_spec.rb +23 -0
- data/spec/properties/spacing_spec.rb +159 -0
- data/spec/properties/spec_vanish_spec.rb +23 -0
- data/spec/properties/strikethrough_spec.rb +23 -0
- data/spec/properties/supress_auto_hyphens_spec.rb +23 -0
- data/spec/properties/supress_line_numbers_spec.rb +23 -0
- data/spec/properties/supress_overlap_spec.rb +23 -0
- data/spec/properties/tab_spec.rb +45 -0
- data/spec/properties/tabs_spec.rb +39 -0
- data/spec/properties/text_alignment_spec.rb +33 -0
- data/spec/properties/text_direction_spec.rb +42 -0
- data/spec/properties/textbox_tight_wrap_spec.rb +33 -0
- data/spec/properties/underline_spec.rb +161 -0
- data/spec/properties/vertical_alignment_spec.rb +26 -0
- data/spec/properties/web_hidden_spec.rb +23 -0
- data/spec/properties/widow_control_spec.rb +23 -0
- data/spec/properties/word_wrap_spec.rb +23 -0
- data/spec/spec_helper.rb +14 -0
- data/spec/style_spec.rb +34 -0
- data/{test → spec/support}/data/elements/break_element.xml +0 -0
- data/{test → spec/support}/data/elements/break_with_attributes_element.xml +0 -0
- data/{test → spec/support}/data/elements/paragraph_element.xml +0 -0
- data/{test → spec/support}/data/elements/paragraph_with_runs_element.xml +1 -1
- data/{test → spec/support}/data/elements/run_element.xml +0 -0
- data/{test → spec/support}/data/elements/symbol_element.xml +0 -0
- data/{test → spec/support}/data/elements/text_element.xml +0 -0
- data/{test → spec/support}/data/parts/content_types_part.xml +0 -0
- data/{test → spec/support}/data/parts/document_with_children_part.xml +0 -0
- data/{test → spec/support}/data/parts/empty_document_part.xml +0 -0
- data/{test → spec/support}/data/parts/global_rels_part.xml +0 -0
- data/{test → spec/support}/data/parts/rels_part.xml +0 -0
- data/{test → spec/support}/data/parts/settings_part.xml +0 -0
- data/{test → spec/support}/data/parts/styles_part.xml +0 -0
- data/{test → spec/support}/data/parts/styles_with_custom_style_part.xml +0 -0
- data/{test → spec/support}/data/styles/character_styles.xml +0 -0
- data/{test → spec/support}/data/styles/paragraph_styles.xml +0 -0
- data/spec/support/element_test_macros.rb +33 -0
- data/spec/support/part_test_macros.rb +27 -0
- data/spec/support/property_test_macros.rb +116 -0
- data/spec/support/style_test_macros.rb +33 -0
- data/spec/support/value_property_test_macros.rb +69 -0
- metadata +151 -133
- data/lib/rocx/elements/style.rb +0 -19
- data/test/elements/break_test.rb +0 -54
- data/test/elements/paragraph_test.rb +0 -37
- data/test/elements/run_test.rb +0 -18
- data/test/elements/symbol_test.rb +0 -23
- data/test/elements/text_test.rb +0 -26
- data/test/package_test.rb +0 -48
- data/test/parts/content_types_test.rb +0 -37
- data/test/parts/document_test.rb +0 -31
- data/test/parts/global_rels_test.rb +0 -13
- data/test/parts/rels_test.rb +0 -48
- data/test/parts/settings_test.rb +0 -13
- data/test/parts/styles_test.rb +0 -29
- data/test/properties/auto_adjust_right_indent_test.rb +0 -50
- data/test/properties/auto_space_de_test.rb +0 -50
- data/test/properties/auto_space_dn_test.rb +0 -50
- data/test/properties/bidi_test.rb +0 -50
- data/test/properties/bold_test.rb +0 -50
- data/test/properties/border_test.rb +0 -216
- data/test/properties/borders_test.rb +0 -95
- data/test/properties/compress_punctuation_test.rb +0 -50
- data/test/properties/conditional_formatting_test.rb +0 -46
- data/test/properties/contextual_spacing_test.rb +0 -50
- data/test/properties/div_id_test.rb +0 -38
- data/test/properties/frame_test.rb +0 -497
- data/test/properties/italics_test.rb +0 -50
- data/test/properties/keep_lines_test.rb +0 -50
- data/test/properties/keep_next_test.rb +0 -50
- data/test/properties/kinsoku_test.rb +0 -50
- data/test/properties/mirror_indent_test.rb +0 -50
- data/test/properties/numbering_test.rb +0 -86
- data/test/properties/outline_level_test.rb +0 -46
- data/test/properties/overflow_punctuation_test.rb +0 -50
- data/test/properties/page_break_before_test.rb +0 -50
- data/test/properties/shading_test.rb +0 -225
- data/test/properties/snap_to_grid_test.rb +0 -50
- data/test/properties/spacing_test.rb +0 -248
- data/test/properties/style_test.rb +0 -30
- data/test/properties/supress_auto_hyphens_test.rb +0 -50
- data/test/properties/supress_line_numbers_test.rb +0 -50
- data/test/properties/supress_overlap_test.rb +0 -50
- data/test/properties/tab_test.rb +0 -63
- data/test/properties/tabs_test.rb +0 -54
- data/test/properties/text_direction_test.rb +0 -100
- data/test/properties/textbox_tight_wrap_test.rb +0 -88
- data/test/properties/vertical_alignment_test.rb +0 -88
- data/test/properties/widow_control_test.rb +0 -50
- data/test/properties/word_wrap_test.rb +0 -50
- data/test/style_test.rb +0 -54
- data/test/test_helper.rb +0 -52
@@ -1,30 +0,0 @@
|
|
1
|
-
require "test_helper"
|
2
|
-
|
3
|
-
class StylePropertyTest < PropertyTest
|
4
|
-
attr_reader :style
|
5
|
-
|
6
|
-
context "always" do
|
7
|
-
setup do
|
8
|
-
@style = Style.new("Nope Style 1")
|
9
|
-
end
|
10
|
-
|
11
|
-
should "set the right tag" do
|
12
|
-
assert_equal :pStyle, style.tag
|
13
|
-
end
|
14
|
-
|
15
|
-
should "set the right name" do
|
16
|
-
assert_equal "style", style.name
|
17
|
-
end
|
18
|
-
end
|
19
|
-
|
20
|
-
context "with a valid style" do
|
21
|
-
setup do
|
22
|
-
@style = Style.new("Nope Style 1")
|
23
|
-
end
|
24
|
-
|
25
|
-
should "return the proper XML" do
|
26
|
-
assert_equal "<w:pStyle w:val=\"Nope Style 1\"/>", xml(style)
|
27
|
-
end
|
28
|
-
end
|
29
|
-
|
30
|
-
end
|
@@ -1,50 +0,0 @@
|
|
1
|
-
require "test_helper"
|
2
|
-
|
3
|
-
class SupressAutoHyphensTest < PropertyTest
|
4
|
-
attr_reader :supress_auto_hyphens
|
5
|
-
|
6
|
-
context "always" do
|
7
|
-
setup do
|
8
|
-
@supress_auto_hyphens = SupressAutoHyphens.new(false)
|
9
|
-
end
|
10
|
-
|
11
|
-
should "have the right tag" do
|
12
|
-
assert_equal :supressAutoHyphens, supress_auto_hyphens.tag
|
13
|
-
end
|
14
|
-
|
15
|
-
should "have the right name" do
|
16
|
-
assert_equal "supress_auto_hyphens", supress_auto_hyphens.name
|
17
|
-
end
|
18
|
-
end
|
19
|
-
|
20
|
-
context "when the value is true, it" do
|
21
|
-
setup do
|
22
|
-
@supress_auto_hyphens = SupressAutoHyphens.new(true)
|
23
|
-
end
|
24
|
-
|
25
|
-
should "return XML" do
|
26
|
-
assert_equal "<w:supressAutoHyphens/>", xml(supress_auto_hyphens)
|
27
|
-
end
|
28
|
-
end
|
29
|
-
|
30
|
-
context "when the value is false, it" do
|
31
|
-
setup do
|
32
|
-
@supress_auto_hyphens = SupressAutoHyphens.new(false)
|
33
|
-
end
|
34
|
-
|
35
|
-
should "not return XML" do
|
36
|
-
assert_equal "", xml(supress_auto_hyphens)
|
37
|
-
end
|
38
|
-
end
|
39
|
-
|
40
|
-
context "when the value is nil, it" do
|
41
|
-
setup do
|
42
|
-
@supress_auto_hyphens = SupressAutoHyphens.new(nil)
|
43
|
-
end
|
44
|
-
|
45
|
-
should "not return XML" do
|
46
|
-
assert_equal "", xml(supress_auto_hyphens)
|
47
|
-
end
|
48
|
-
end
|
49
|
-
|
50
|
-
end
|
@@ -1,50 +0,0 @@
|
|
1
|
-
require "test_helper"
|
2
|
-
|
3
|
-
class SupressLineNumbersTest < PropertyTest
|
4
|
-
attr_reader :supress_line_numbers
|
5
|
-
|
6
|
-
context "always" do
|
7
|
-
setup do
|
8
|
-
@supress_line_numbers = SupressLineNumbers.new(false)
|
9
|
-
end
|
10
|
-
|
11
|
-
should "have the right tag" do
|
12
|
-
assert_equal :supressLineNumbers, supress_line_numbers.tag
|
13
|
-
end
|
14
|
-
|
15
|
-
should "have the right name" do
|
16
|
-
assert_equal "supress_line_numbers", supress_line_numbers.name
|
17
|
-
end
|
18
|
-
end
|
19
|
-
|
20
|
-
context "when the value is true, it" do
|
21
|
-
setup do
|
22
|
-
@supress_line_numbers = SupressLineNumbers.new(true)
|
23
|
-
end
|
24
|
-
|
25
|
-
should "return XML" do
|
26
|
-
assert_equal "<w:supressLineNumbers/>", xml(supress_line_numbers)
|
27
|
-
end
|
28
|
-
end
|
29
|
-
|
30
|
-
context "when the value is false, it" do
|
31
|
-
setup do
|
32
|
-
@supress_line_numbers = SupressLineNumbers.new(false)
|
33
|
-
end
|
34
|
-
|
35
|
-
should "not return XML" do
|
36
|
-
assert_equal "", xml(supress_line_numbers)
|
37
|
-
end
|
38
|
-
end
|
39
|
-
|
40
|
-
context "when the value is nil, it" do
|
41
|
-
setup do
|
42
|
-
@supress_line_numbers = SupressLineNumbers.new(nil)
|
43
|
-
end
|
44
|
-
|
45
|
-
should "not return XML" do
|
46
|
-
assert_equal "", xml(supress_line_numbers)
|
47
|
-
end
|
48
|
-
end
|
49
|
-
|
50
|
-
end
|
@@ -1,50 +0,0 @@
|
|
1
|
-
require "test_helper"
|
2
|
-
|
3
|
-
class SupressOverlapTest < PropertyTest
|
4
|
-
attr_reader :supress_overlap
|
5
|
-
|
6
|
-
context "always" do
|
7
|
-
setup do
|
8
|
-
@supress_overlap = SupressOverlap.new(false)
|
9
|
-
end
|
10
|
-
|
11
|
-
should "have the right tag" do
|
12
|
-
assert_equal :supressOverlap, supress_overlap.tag
|
13
|
-
end
|
14
|
-
|
15
|
-
should "have the right name" do
|
16
|
-
assert_equal "supress_overlap", supress_overlap.name
|
17
|
-
end
|
18
|
-
end
|
19
|
-
|
20
|
-
context "when the value is true, it" do
|
21
|
-
setup do
|
22
|
-
@supress_overlap = SupressOverlap.new(true)
|
23
|
-
end
|
24
|
-
|
25
|
-
should "return XML" do
|
26
|
-
assert_equal "<w:supressOverlap/>", xml(supress_overlap)
|
27
|
-
end
|
28
|
-
end
|
29
|
-
|
30
|
-
context "when the value is false, it" do
|
31
|
-
setup do
|
32
|
-
@supress_overlap = SupressOverlap.new(false)
|
33
|
-
end
|
34
|
-
|
35
|
-
should "not return XML" do
|
36
|
-
assert_equal "", xml(supress_overlap)
|
37
|
-
end
|
38
|
-
end
|
39
|
-
|
40
|
-
context "when the value is nil, it" do
|
41
|
-
setup do
|
42
|
-
@supress_overlap = SupressOverlap.new(nil)
|
43
|
-
end
|
44
|
-
|
45
|
-
should "not return XML" do
|
46
|
-
assert_equal "", xml(supress_overlap)
|
47
|
-
end
|
48
|
-
end
|
49
|
-
|
50
|
-
end
|
data/test/properties/tab_test.rb
DELETED
@@ -1,63 +0,0 @@
|
|
1
|
-
require "test_helper"
|
2
|
-
|
3
|
-
class TabTest < PropertyTest
|
4
|
-
attr_reader :tab
|
5
|
-
|
6
|
-
context "always" do
|
7
|
-
setup do
|
8
|
-
@tab = Tab.new(1234, :start)
|
9
|
-
end
|
10
|
-
|
11
|
-
should "have the right name" do
|
12
|
-
assert_equal "tab", tab.name
|
13
|
-
end
|
14
|
-
|
15
|
-
should "have the right tag" do
|
16
|
-
assert_equal :tab, tab.tag
|
17
|
-
end
|
18
|
-
end
|
19
|
-
|
20
|
-
context "when assigning bad position values, it" do
|
21
|
-
should "raise an exception" do
|
22
|
-
assert_raises ArgumentError do
|
23
|
-
@tab = Tab.new(:bad, :start)
|
24
|
-
end
|
25
|
-
end
|
26
|
-
end
|
27
|
-
|
28
|
-
context "when assigning bad type values, it" do
|
29
|
-
should "raise an exception" do
|
30
|
-
assert_raises ArgumentError do
|
31
|
-
@tab = Tab.new(1234, :bad)
|
32
|
-
end
|
33
|
-
end
|
34
|
-
end
|
35
|
-
|
36
|
-
context "when assigniing bad leader values, it" do
|
37
|
-
should "raise an exception" do
|
38
|
-
assert_raises ArgumentError do
|
39
|
-
@tab = Tab.new(1234, :clear, :bad)
|
40
|
-
end
|
41
|
-
end
|
42
|
-
end
|
43
|
-
|
44
|
-
context "with valid values, it" do
|
45
|
-
setup do
|
46
|
-
@tab = Tab.new(1234, :start)
|
47
|
-
end
|
48
|
-
|
49
|
-
should "return the right XML" do
|
50
|
-
assert_equal "<w:tab w:pos=\"1234\" w:val=\"start\"/>", xml(tab)
|
51
|
-
end
|
52
|
-
end
|
53
|
-
|
54
|
-
context "with valid values and a specified leader, it" do
|
55
|
-
setup do
|
56
|
-
@tab = Tab.new(1234, :start, :dot)
|
57
|
-
end
|
58
|
-
|
59
|
-
should "Return the right XML" do
|
60
|
-
assert_equal "<w:tab w:pos=\"1234\" w:val=\"start\" w:leader=\"dot\"/>", xml(tab)
|
61
|
-
end
|
62
|
-
end
|
63
|
-
end
|
@@ -1,54 +0,0 @@
|
|
1
|
-
require "test_helper"
|
2
|
-
|
3
|
-
class TabsTest < PropertyTest
|
4
|
-
attr_reader :tabs
|
5
|
-
|
6
|
-
context "always" do
|
7
|
-
setup do
|
8
|
-
@tabs = Tabs.new
|
9
|
-
end
|
10
|
-
|
11
|
-
should "have the right name" do
|
12
|
-
assert_equal "tabs", tabs.name
|
13
|
-
end
|
14
|
-
|
15
|
-
should "have the right tag" do
|
16
|
-
assert_equal :tabs, tabs.tag
|
17
|
-
end
|
18
|
-
end
|
19
|
-
|
20
|
-
context "when trying to add tabs, it" do
|
21
|
-
setup do
|
22
|
-
@tabs = Tabs.new
|
23
|
-
end
|
24
|
-
|
25
|
-
should "raise an exception if the tab to be added isn't a tab at all" do
|
26
|
-
assert_raises ArgumentError do
|
27
|
-
tabs << []
|
28
|
-
end
|
29
|
-
end
|
30
|
-
end
|
31
|
-
|
32
|
-
context "when there are no tabs, it" do
|
33
|
-
setup do
|
34
|
-
@tabs = Tabs.new
|
35
|
-
end
|
36
|
-
|
37
|
-
should "not return any XML" do
|
38
|
-
assert_equal "", xml(tabs)
|
39
|
-
end
|
40
|
-
end
|
41
|
-
|
42
|
-
context "when there are tabs, it" do
|
43
|
-
setup do
|
44
|
-
@tabs = Tabs.new
|
45
|
-
tabs << Tab.new(1234, :start)
|
46
|
-
tabs << Tab.new(5678, :end, :heavy)
|
47
|
-
end
|
48
|
-
|
49
|
-
should "return the correct XML" do
|
50
|
-
assert_equal "<w:tabs>\n <w:tab w:pos=\"1234\" w:val=\"start\"/>\n <w:tab w:pos=\"5678\" w:val=\"end\" w:leader=\"heavy\"/>\n </w:tabs>", xml(tabs)
|
51
|
-
end
|
52
|
-
end
|
53
|
-
|
54
|
-
end
|
@@ -1,100 +0,0 @@
|
|
1
|
-
require "test_helper"
|
2
|
-
|
3
|
-
class TextDirectionTest < PropertyTest
|
4
|
-
attr_reader :text_direction
|
5
|
-
|
6
|
-
context "always" do
|
7
|
-
setup do
|
8
|
-
@text_direction = TextDirection.new(:lr)
|
9
|
-
end
|
10
|
-
|
11
|
-
should "have the right tag" do
|
12
|
-
assert_equal :textDirection, text_direction.tag
|
13
|
-
end
|
14
|
-
|
15
|
-
should "have the right name" do
|
16
|
-
assert_equal "text_direction", text_direction.name
|
17
|
-
end
|
18
|
-
end
|
19
|
-
|
20
|
-
context "with valid values," do
|
21
|
-
context "like :lr, it" do
|
22
|
-
setup do
|
23
|
-
@text_direction = TextDirection.new(:lr)
|
24
|
-
end
|
25
|
-
|
26
|
-
should "return the right XML" do
|
27
|
-
assert_equal "<w:textDirection w:val=\"lr\"/>", xml(text_direction)
|
28
|
-
end
|
29
|
-
end
|
30
|
-
end
|
31
|
-
|
32
|
-
context "with valid values," do
|
33
|
-
context "like :lrV, it" do
|
34
|
-
setup do
|
35
|
-
@text_direction = TextDirection.new(:lrV)
|
36
|
-
end
|
37
|
-
|
38
|
-
should "return the right XML" do
|
39
|
-
assert_equal "<w:textDirection w:val=\"lrV\"/>", xml(text_direction)
|
40
|
-
end
|
41
|
-
end
|
42
|
-
end
|
43
|
-
|
44
|
-
context "with valid values," do
|
45
|
-
context "like :rl, it" do
|
46
|
-
setup do
|
47
|
-
@text_direction = TextDirection.new(:rl)
|
48
|
-
end
|
49
|
-
|
50
|
-
should "return the right XML" do
|
51
|
-
assert_equal "<w:textDirection w:val=\"rl\"/>", xml(text_direction)
|
52
|
-
end
|
53
|
-
end
|
54
|
-
end
|
55
|
-
|
56
|
-
context "with valid values," do
|
57
|
-
context "like :rlV, it" do
|
58
|
-
setup do
|
59
|
-
@text_direction = TextDirection.new(:rlV)
|
60
|
-
end
|
61
|
-
|
62
|
-
should "return the right XML" do
|
63
|
-
assert_equal "<w:textDirection w:val=\"rlV\"/>", xml(text_direction)
|
64
|
-
end
|
65
|
-
end
|
66
|
-
end
|
67
|
-
|
68
|
-
context "with valid values," do
|
69
|
-
context "like :tb, it" do
|
70
|
-
setup do
|
71
|
-
@text_direction = TextDirection.new(:tb)
|
72
|
-
end
|
73
|
-
|
74
|
-
should "return the right XML" do
|
75
|
-
assert_equal "<w:textDirection w:val=\"tb\"/>", xml(text_direction)
|
76
|
-
end
|
77
|
-
end
|
78
|
-
end
|
79
|
-
|
80
|
-
context "with valid values," do
|
81
|
-
context "like :tbV, it" do
|
82
|
-
setup do
|
83
|
-
@text_direction = TextDirection.new(:tbV)
|
84
|
-
end
|
85
|
-
|
86
|
-
should "return the right XML" do
|
87
|
-
assert_equal "<w:textDirection w:val=\"tbV\"/>", xml(text_direction)
|
88
|
-
end
|
89
|
-
end
|
90
|
-
end
|
91
|
-
|
92
|
-
context "with invalid values, it" do
|
93
|
-
should "raise an error" do
|
94
|
-
assert_raises ArgumentError do
|
95
|
-
@text_direction = TextDirection.new(:left_to_right)
|
96
|
-
end
|
97
|
-
end
|
98
|
-
end
|
99
|
-
|
100
|
-
end
|
@@ -1,88 +0,0 @@
|
|
1
|
-
require "test_helper"
|
2
|
-
|
3
|
-
class TextboxTightWrapTest < PropertyTest
|
4
|
-
attr_reader :textbox_tight_wrap
|
5
|
-
|
6
|
-
context "always" do
|
7
|
-
setup do
|
8
|
-
@textbox_tight_wrap = TextboxTightWrap.new(:allLines)
|
9
|
-
end
|
10
|
-
|
11
|
-
should "have the right tag" do
|
12
|
-
assert_equal :textboxTightWrap, textbox_tight_wrap.tag
|
13
|
-
end
|
14
|
-
|
15
|
-
should "have the right name" do
|
16
|
-
assert_equal "textbox_tight_wrap", textbox_tight_wrap.name
|
17
|
-
end
|
18
|
-
end
|
19
|
-
|
20
|
-
context "with valid values," do
|
21
|
-
context "like :allLines, it" do
|
22
|
-
setup do
|
23
|
-
@textbox_tight_wrap = TextboxTightWrap.new(:allLines)
|
24
|
-
end
|
25
|
-
|
26
|
-
should "return the right XML" do
|
27
|
-
assert_equal "<w:textboxTightWrap w:val=\"allLines\"/>", xml(textbox_tight_wrap)
|
28
|
-
end
|
29
|
-
end
|
30
|
-
end
|
31
|
-
|
32
|
-
context "with valid values," do
|
33
|
-
context "like :firstAndLastLine, it" do
|
34
|
-
setup do
|
35
|
-
@textbox_tight_wrap = TextboxTightWrap.new(:firstAndLastLine)
|
36
|
-
end
|
37
|
-
|
38
|
-
should "return the right XML" do
|
39
|
-
assert_equal "<w:textboxTightWrap w:val=\"firstAndLastLine\"/>", xml(textbox_tight_wrap)
|
40
|
-
end
|
41
|
-
end
|
42
|
-
end
|
43
|
-
|
44
|
-
context "with valid values," do
|
45
|
-
context "like :firstLineOnly, it" do
|
46
|
-
setup do
|
47
|
-
@textbox_tight_wrap = TextboxTightWrap.new(:firstLineOnly)
|
48
|
-
end
|
49
|
-
|
50
|
-
should "return the right XML" do
|
51
|
-
assert_equal "<w:textboxTightWrap w:val=\"firstLineOnly\"/>", xml(textbox_tight_wrap)
|
52
|
-
end
|
53
|
-
end
|
54
|
-
end
|
55
|
-
|
56
|
-
context "with valid values," do
|
57
|
-
context "like :lastLineOnly, it" do
|
58
|
-
setup do
|
59
|
-
@textbox_tight_wrap = TextboxTightWrap.new(:lastLineOnly)
|
60
|
-
end
|
61
|
-
|
62
|
-
should "return the right XML" do
|
63
|
-
assert_equal "<w:textboxTightWrap w:val=\"lastLineOnly\"/>", xml(textbox_tight_wrap)
|
64
|
-
end
|
65
|
-
end
|
66
|
-
end
|
67
|
-
|
68
|
-
context "with valid values," do
|
69
|
-
context "like :none, it" do
|
70
|
-
setup do
|
71
|
-
@textbox_tight_wrap = TextboxTightWrap.new(:none)
|
72
|
-
end
|
73
|
-
|
74
|
-
should "return the right XML" do
|
75
|
-
assert_equal "<w:textboxTightWrap w:val=\"none\"/>", xml(textbox_tight_wrap)
|
76
|
-
end
|
77
|
-
end
|
78
|
-
end
|
79
|
-
|
80
|
-
context "with invalid values, it" do
|
81
|
-
should "raise an error" do
|
82
|
-
assert_raises ArgumentError do
|
83
|
-
@textbox_tight_wrap = TextboxTightWrap.new(:something_terrible)
|
84
|
-
end
|
85
|
-
end
|
86
|
-
end
|
87
|
-
|
88
|
-
end
|